gui: Fix missing qRegisterMetaType(WalletModel*)

Github-Pull: #16348
Rebased-From: f27bd96b5f
This commit is contained in:
João Barbosa
2019-07-08 21:30:15 +01:00
parent 1fb747a800
commit e2f7677bde

View File

@@ -450,6 +450,9 @@ int GuiMain(int argc, char* argv[])
// Register meta types used for QMetaObject::invokeMethod
qRegisterMetaType< bool* >();
#ifdef ENABLE_WALLET
qRegisterMetaType<WalletModel*>();
#endif
// 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");