[Qt] additional small fix for #3099 (new receive flow)

- remove an obsolete connection to a signMessage() signal
This commit is contained in:
Philip Kaufmann 2013-10-25 14:19:44 +02:00
parent 7cd8623883
commit 1511057b4f
1 changed files with 0 additions and 2 deletions

View File

@ -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()));
}