diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-12-03 04:43:18 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-12-03 04:43:18 -0800 |
| commit | 2e2fca4439b4651e28c13237999ab84e06481c9d (patch) | |
| tree | 8fe4a7164440556b6e43fd41d2287d93428c32e3 /src/qt/clientmodel.cpp | |
| parent | Merge pull request #2046 from Diapolo/traymenu (diff) | |
| parent | Bitcoin-Qt: remove obsolete modal flag from GUI APIs (diff) | |
| download | discoin-2e2fca4439b4651e28c13237999ab84e06481c9d.tar.xz discoin-2e2fca4439b4651e28c13237999ab84e06481c9d.zip | |
Merge pull request #2065 from Diapolo/remove_modal_flag
Bitcoin-Qt: remove obsolete modal flag from GUI APIs
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 f8fa41201..ce112803f 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 message(tr("Network Alert"), QString::fromStdString(alert.strStatusBar), false, CClientUIInterface::ICON_ERROR); + emit message(tr("Network Alert"), QString::fromStdString(alert.strStatusBar), CClientUIInterface::ICON_ERROR); } } |