qt: Fix missing qRegisterMetaType for size_t

It is required in order to use size_t in QueuedConnections.
pull/764/head
Hennadii Stepanov 5 years ago
parent a7aec7ad97
commit 88a94f7bb8
No known key found for this signature in database
GPG Key ID: 410108112E7EA81F

@ -438,6 +438,7 @@ int GuiMain(int argc, char* argv[])
// Need to pass name here as CAmount is a typedef (see http://qt-project.org/doc/qt-5/qmetatype.html#qRegisterMetaType)
// IMPORTANT if it is no longer a typedef use the normal variant above
qRegisterMetaType< CAmount >("CAmount");
qRegisterMetaType<size_t>("size_t");
qRegisterMetaType< std::function<void()> >("std::function<void()>");
qRegisterMetaType<QMessageBox::Icon>("QMessageBox::Icon");
/// 2. Parse command-line options. We do this after qt in order to show an error if there are problems parsing these

Loading…
Cancel
Save