diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-12-04 14:14:10 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-12-23 12:07:23 +0100 |
| commit | c58e7d4e013f21e38fb1501d896d32e8407a9c3c (patch) | |
| tree | 8e24786b335c0316bb9929864407b9fa7303c98a /src/qt/transactionview.h | |
| parent | Add context menu for address book page (implements part 1 of issue #648) (diff) | |
| download | discoin-c58e7d4e013f21e38fb1501d896d32e8407a9c3c.tar.xz discoin-c58e7d4e013f21e38fb1501d896d32e8407a9c3c.zip | |
Copy amount to clipboard (implements #657)
- Also, unify similar code related to copying transaction fields to clipboard
Diffstat (limited to 'src/qt/transactionview.h')
| -rw-r--r-- | src/qt/transactionview.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/qt/transactionview.h b/src/qt/transactionview.h index 67d0b46f3..bc6e1e4e0 100644 --- a/src/qt/transactionview.h +++ b/src/qt/transactionview.h @@ -60,6 +60,11 @@ private: private slots: void contextualMenu(const QPoint &); void dateRangeChanged(); + void showDetails(); + void copyAddress(); + void editLabel(); + void copyLabel(); + void copyAmount(); signals: void doubleClicked(const QModelIndex&); @@ -70,10 +75,6 @@ public slots: void changedPrefix(const QString &prefix); void changedAmount(const QString &amount); void exportClicked(); - void showDetails(); - void copyAddress(); - void editLabel(); - void copyLabel(); }; |