diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-11-27 12:34:18 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-11-27 12:34:18 -0800 |
| commit | 97c8e6389e7e5fdc0ef5f4162105a9661b325eb9 (patch) | |
| tree | 26a9051543b64ff568c8f880c2ac75753af4870a /src/qt/clientmodel.cpp | |
| parent | Merge pull request #2004 from alexanderkjeldaas/simplify-cmutexlock (diff) | |
| parent | update CClientUIInterface and remove orphan Wx stuff (diff) | |
| download | discoin-97c8e6389e7e5fdc0ef5f4162105a9661b325eb9.tar.xz discoin-97c8e6389e7e5fdc0ef5f4162105a9661b325eb9.zip | |
Merge pull request #1988 from Diapolo/ThreadSafeMessageBox
update CClientUIInterface and remove orphan Wx stuff
Diffstat (limited to 'src/qt/clientmodel.cpp')
| -rw-r--r-- | src/qt/clientmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index 9b7362d75..f8fa41201 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -84,7 +84,7 @@ void ClientModel::updateAlert(const QString &hash, int status) CAlert alert = CAlert::getAlertByHash(hash_256); if(!alert.IsNull()) { - emit error(tr("Network Alert"), QString::fromStdString(alert.strStatusBar), false); + emit message(tr("Network Alert"), QString::fromStdString(alert.strStatusBar), false, CClientUIInterface::ICON_ERROR); } } |