diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-07-14 21:21:17 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-07-14 21:21:17 +0200 |
| commit | 77b615cebabbe7274e6409f95dda61e393a75e7f (patch) | |
| tree | 07901d56a620471ce4f6edf191241dd738a186a5 /src/qt/bitcoingui.cpp | |
| parent | Update mac build (alkor on forums) (diff) | |
| download | discoin-77b615cebabbe7274e6409f95dda61e393a75e7f.tar.xz discoin-77b615cebabbe7274e6409f95dda61e393a75e7f.zip | |
solve warnings at startup
Diffstat (limited to 'src/qt/bitcoingui.cpp')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 0c66bd4ca..016f26194 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -84,7 +84,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): QVBoxLayout *vbox = new QVBoxLayout(); transactionView = new TransactionView(this); - connect(transactionView, SIGNAL(doubleClicked(const QModelIndex&)), transactionView, SLOT(transactionDetails())); + connect(transactionView, SIGNAL(doubleClicked(const QModelIndex&)), transactionView, SLOT(showDetails())); vbox->addWidget(transactionView); transactionsPage = new QWidget(this); |