From 1511057b4f9a1fb55aebcddc274d7f396e52c7a3 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Fri, 25 Oct 2013 14:19:44 +0200 Subject: [PATCH] [Qt] additional small fix for #3099 (new receive flow) - remove an obsolete connection to a signMessage() signal --- src/qt/walletview.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/qt/walletview.cpp b/src/qt/walletview.cpp index 1b80ae34e..7b1729b51 100644 --- a/src/qt/walletview.cpp +++ b/src/qt/walletview.cpp @@ -68,8 +68,6 @@ WalletView::WalletView(QWidget *parent): // Double-clicking on a transaction on the transaction history page shows details connect(transactionView, SIGNAL(doubleClicked(QModelIndex)), transactionView, SLOT(showDetails())); - // Clicking on "Sign Message" in the receive coins page opens the sign message tab in the Sign/Verify Message dialog - connect(receiveCoinsPage, SIGNAL(signMessage(QString)), this, SLOT(gotoSignMessageTab(QString))); // Clicking on "Export" allows to export the transaction list connect(exportButton, SIGNAL(clicked()), transactionView, SLOT(exportClicked())); }