We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7aec7a commit 88a94f7Copy full SHA for 88a94f7
src/qt/bitcoin.cpp
@@ -438,6 +438,7 @@ int GuiMain(int argc, char* argv[])
438
// Need to pass name here as CAmount is a typedef (see http://qt-project.org/doc/qt-5/qmetatype.html#qRegisterMetaType)
439
// IMPORTANT if it is no longer a typedef use the normal variant above
440
qRegisterMetaType< CAmount >("CAmount");
441
+ qRegisterMetaType<size_t>("size_t");
442
qRegisterMetaType< std::function<void()> >("std::function<void()>");
443
qRegisterMetaType<QMessageBox::Icon>("QMessageBox::Icon");
444
/// 2. Parse command-line options. We do this after qt in order to show an error if there are problems parsing these
0 commit comments