mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-17 08:06:59 +01:00
paymentserver: style fixes / cleanup
- rename reportError() into message() to be in line with our default message() signal/slot naming (and can be used for all types of messages) - rename some QStrings to not collide with message() function - add a missing message for malformed URIs that IS also used in BitcoinGUI - fix / extend some comments and misc style fixes
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user