aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-06-16 17:13:46 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-06-16 17:13:46 +0300
commiteaf59243b2cbe3d7ea6de1d8dcd18493df9f365d (patch)
tree91558ec1f08da11e8eb08e9fce392425673dd44d /main.cpp
parent3ddd9bed72da0e039f44b64a4cc9fff679dd40ed (diff)
downloadmonzero-gui-eaf59243b2cbe3d7ea6de1d8dcd18493df9f365d.tar.gz
monzero-gui-eaf59243b2cbe3d7ea6de1d8dcd18493df9f365d.tar.xz
monzero-gui-eaf59243b2cbe3d7ea6de1d8dcd18493df9f365d.zip
basic "send money" functionality implemented in GUI
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index 7331a4e4..70390a80 100644
--- a/main.cpp
+++ b/main.cpp
@@ -36,6 +36,7 @@
#include "oshelper.h"
#include "WalletManager.h"
#include "Wallet.h"
+#include "PendingTransaction.h"
@@ -53,6 +54,8 @@ int main(int argc, char *argv[])
qmlRegisterType<clipboardAdapter>("moneroComponents", 1, 0, "Clipboard");
qmlRegisterUncreatableType<Wallet>("Bitmonero.Wallet", 1, 0, "Wallet", "Wallet can't be instantiated directly");
+ qmlRegisterUncreatableType<PendingTransaction>("Bitmonero.PendingTransaction", 1, 0, "PendingTransaction",
+ "PendingTransaction can't be instantiated directly");
QQmlApplicationEngine engine;