File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 40
40
#include < qt/paymentserver.h>
41
41
#include < qt/walletcontroller.h>
42
42
#include < qt/walletmodel.h>
43
+ #include < wallet/types.h>
43
44
#endif // ENABLE_WALLET
44
45
45
46
#include < boost/signals2/connection.hpp>
@@ -79,6 +80,9 @@ Q_DECLARE_METATYPE(CAmount)
79
80
Q_DECLARE_METATYPE(SynchronizationState)
80
81
Q_DECLARE_METATYPE(SyncType)
81
82
Q_DECLARE_METATYPE(uint256)
83
+ #ifdef ENABLE_WALLET
84
+ Q_DECLARE_METATYPE (wallet::AddressPurpose)
85
+ #endif // ENABLE_WALLET
82
86
83
87
static void RegisterMetaTypes ()
84
88
{
@@ -88,7 +92,8 @@ static void RegisterMetaTypes()
88
92
qRegisterMetaType<SyncType>();
89
93
#ifdef ENABLE_WALLET
90
94
qRegisterMetaType<WalletModel*>();
91
- #endif
95
+ qRegisterMetaType<wallet::AddressPurpose>();
96
+ #endif // ENABLE_WALLET
92
97
// Register typedefs (see https://doc.qt.io/qt-5/qmetatype.html#qRegisterMetaType)
93
98
// IMPORTANT: if CAmount is no longer a typedef use the normal variant above (see https://doc.qt.io/qt-5/qmetatype.html#qRegisterMetaType-1)
94
99
qRegisterMetaType<CAmount>(" CAmount" );
You can’t perform that action at this time.
0 commit comments