diff options
| author | Philip Kaufmann <[email protected]> | 2013-10-26 19:31:42 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-10-27 21:20:49 +0100 |
| commit | d127964a974ad83d01e80ecd82a666b90ffb6793 (patch) | |
| tree | a43edfc3fe7f398f18fd3935f7bbbbce3bb8118d /src/qt/walletview.cpp | |
| parent | walletview: make backupWallet() use GUIUtil::getSaveFileName() (diff) | |
| download | discoin-d127964a974ad83d01e80ecd82a666b90ffb6793.tar.xz discoin-d127964a974ad83d01e80ecd82a666b90ffb6793.zip | |
walletview: clarify 2 comments
Diffstat (limited to 'src/qt/walletview.cpp')
| -rw-r--r-- | src/qt/walletview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/walletview.cpp b/src/qt/walletview.cpp index 48695a141..5622fcfb1 100644 --- a/src/qt/walletview.cpp +++ b/src/qt/walletview.cpp @@ -56,7 +56,7 @@ WalletView::WalletView(QWidget *parent): addWidget(receiveCoinsPage); addWidget(sendCoinsPage); - // Clicking on a transaction on the overview page simply sends you to transaction history page + // Clicking on a transaction on the overview pre-selects the transaction on the transaction history page connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), transactionView, SLOT(focusTransaction(QModelIndex))); // Double-clicking on a transaction on the transaction history page shows details @@ -77,7 +77,7 @@ void WalletView::setBitcoinGUI(BitcoinGUI *gui) { if (gui) { - // Clicking on a transaction on the overview page sends you to the transactions tab + // Clicking on a transaction on the overview page simply sends you to transaction history page connect(overviewPage, SIGNAL(transactionClicked(QModelIndex)), gui, SLOT(gotoHistoryPage())); // Receive and report messages |