diff options
| author | Pavel JanÃk <[email protected]> | 2015-01-08 11:44:25 +0100 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2015-01-31 17:38:28 -0500 |
| commit | 5262fde0ecd19f1febbfcd488f2be41c5dffd047 (patch) | |
| tree | 413401ca7111906838b0f5f5d0c0604bcce52d19 /src/qt/walletmodel.cpp | |
| parent | Fix typo (diff) | |
| download | discoin-5262fde0ecd19f1febbfcd488f2be41c5dffd047.tar.xz discoin-5262fde0ecd19f1febbfcd488f2be41c5dffd047.zip | |
Remove whitespaces before double colon in errors and logs
Diffstat (limited to 'src/qt/walletmodel.cpp')
| -rw-r--r-- | src/qt/walletmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 57596b77b..4a7abf999 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -452,7 +452,7 @@ static void NotifyAddressBookChanged(WalletModel *walletmodel, CWallet *wallet, QString strLabel = QString::fromStdString(label); QString strPurpose = QString::fromStdString(purpose); - qDebug() << "NotifyAddressBookChanged : " + strAddress + " " + strLabel + " isMine=" + QString::number(isMine) + " purpose=" + strPurpose + " status=" + QString::number(status); + qDebug() << "NotifyAddressBookChanged: " + strAddress + " " + strLabel + " isMine=" + QString::number(isMine) + " purpose=" + strPurpose + " status=" + QString::number(status); QMetaObject::invokeMethod(walletmodel, "updateAddressBook", Qt::QueuedConnection, Q_ARG(QString, strAddress), Q_ARG(QString, strLabel), |