gui: Fix missing qRegisterMetaType(WalletModel*)
This commit is contained in:
parent
2679bb8919
commit
f27bd96b5f
1 changed files with 3 additions and 0 deletions
|
@ -448,6 +448,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");
|
||||
|
|
Loading…
Reference in a new issue