aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoin.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2013-10-20 01:01:38 -0700
committerWladimir J. van der Laan <laanwj@gmail.com>2013-10-20 01:01:38 -0700
commit76eb1920761db7ce6e857b047c51753effb80ed7 (patch)
tree588c29d22d997820eaf53428bd3b6700dd039298 /src/qt/bitcoin.cpp
parent00f198c9a5d494d85a97e0bd6cdf36d9c2d5ff1f (diff)
parent95d4a2be95a4b902c4cda4a8b57c7be9e572aee6 (diff)
Merge pull request #3108 from Diapolo/paymentserver_style
paymentserver: style fixes / cleanup
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r--src/qt/bitcoin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp
index 78693971da..e73a82978a 100644
--- a/src/qt/bitcoin.cpp
+++ b/src/qt/bitcoin.cpp
@@ -333,8 +333,8 @@ int main(int argc, char *argv[])
paymentServer, SLOT(fetchPaymentACK(CWallet*,const SendCoinsRecipient&,QByteArray)));
QObject::connect(paymentServer, SIGNAL(receivedPaymentACK(QString)),
&window, SLOT(showPaymentACK(QString)));
- QObject::connect(paymentServer, SIGNAL(reportError(QString, QString, unsigned int)),
- guiref, SLOT(message(QString, QString, unsigned int)));
+ QObject::connect(paymentServer, SIGNAL(message(QString,QString,unsigned int)),
+ guiref, SLOT(message(QString,QString,unsigned int)));
QTimer::singleShot(100, paymentServer, SLOT(uiReady()));
app.exec();