diff options
| author | Philip Kaufmann <[email protected]> | 2013-04-01 14:43:50 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-04-01 14:43:50 +0200 |
| commit | abf11f79ae2a9767778b36a2f9e0c4bc97624602 (patch) | |
| tree | 3537530880bb6484b20e897a88f852bf3acf339c /src/qt/walletview.h | |
| parent | Merge pull request #2433 from laanwj/2013_03_removetransactioncount (diff) | |
| download | discoin-abf11f79ae2a9767778b36a2f9e0c4bc97624602.tar.xz discoin-abf11f79ae2a9767778b36a2f9e0c4bc97624602.zip | |
fix "send coins" via context menu in address book
- the send coins context menu entry was not working anymore, because
a non current version of #2220 was merged onto current master
- also removes some unneeded spaces and adds a comment to
WalletModel::getNumTransactions()
Diffstat (limited to 'src/qt/walletview.h')
| -rw-r--r-- | src/qt/walletview.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qt/walletview.h b/src/qt/walletview.h index 38eb0227a..caa51d7c3 100644 --- a/src/qt/walletview.h +++ b/src/qt/walletview.h @@ -49,9 +49,9 @@ public: functionality. */ void setWalletModel(WalletModel *walletModel); - + bool handleURI(const QString &uri); - + void showOutOfSyncWarning(bool fShow); private: @@ -105,7 +105,7 @@ public slots: /** Switch to receive coins page */ void gotoReceiveCoinsPage(); /** Switch to send coins page */ - void gotoSendCoinsPage(); + void gotoSendCoinsPage(QString addr = ""); /** Show Sign/Verify Message dialog and switch to sign message tab */ void gotoSignMessageTab(QString addr = ""); @@ -125,7 +125,7 @@ public slots: void changePassphrase(); /** Ask for passphrase to unlock wallet temporarily */ void unlockWallet(); - + void setEncryptionStatus(); }; |