diff options
| author | Philip Kaufmann <[email protected]> | 2012-11-27 22:02:50 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-12-03 14:02:02 +0100 |
| commit | 50ecd7b68970062bfb540798370dbfab6d376086 (patch) | |
| tree | 087c71cb3f5a3a3b885ad2e3278d8f5e4e116281 /src/qt/bitcoingui.h | |
| parent | Merge pull request #2065 from Diapolo/remove_modal_flag (diff) | |
| download | discoin-50ecd7b68970062bfb540798370dbfab6d376086.tar.xz discoin-50ecd7b68970062bfb540798370dbfab6d376086.zip | |
use new message() function in BitcoinGUI
- use it for displaying URI parsing warnings
- use it for displaying error and information in backup wallet function
(the information display is new and the error was a warning before)
- cleanup BitcoinGUI::incomingTransaction()
-- use message() + the information icon from message
-- comment out an unused parameter in the function definition and
declaration
-- move all pre-checks at the beginning of the function
Diffstat (limited to 'src/qt/bitcoingui.h')
| -rw-r--r-- | src/qt/bitcoingui.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 3faf6d948..b7afdb1c8 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -168,7 +168,7 @@ private slots: The new items are those between start and end inclusive, under the given parent item. */ - void incomingTransaction(const QModelIndex & parent, int start, int end); + void incomingTransaction(const QModelIndex& parent, int start, int /*end*/); /** Encrypt the wallet */ void encryptWallet(bool status); /** Backup the wallet */ |