diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-10-24 15:49:13 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-10-25 14:24:30 +0200 |
commit | 2384a2864b6a0b29eec6410057aefe1fd8e7e585 (patch) | |
tree | 13442ace1c06ba82339e8daad62557abeb7ab7d3 /src/qt/walletview.h | |
parent | 081c0cdeb2b8c1e8db449f3b38837c4ca3b4ba73 (diff) |
allow emit message() in sendcoinsdialog and walletview
- this allows us to use emit message() over MessageBox:: or gui->message()
calls in sendcoinsdialog and walletview
- move main handlePaymentRequest() functionality back to BitcoinGUI
- move a showNormalIfMinimized() before gotoSendCoinsPage()
Diffstat (limited to 'src/qt/walletview.h')
-rw-r--r-- | src/qt/walletview.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/walletview.h b/src/qt/walletview.h index 54451d744a..60544cbf88 100644 --- a/src/qt/walletview.h +++ b/src/qt/walletview.h @@ -105,6 +105,9 @@ public slots: signals: /** Signal that we want to show the main window */ void showNormalIfMinimized(); + + /** Fired when a message should be reported to the user */ + void message(const QString &title, const QString &message, unsigned int style); }; #endif // WALLETVIEW_H |