diff options
| author | Philip Kaufmann <[email protected]> | 2012-12-03 13:24:42 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-12-03 13:24:42 +0100 |
| commit | 3675588a30eae39921afbf00f32f86913d5d2bd5 (patch) | |
| tree | 8fe4a7164440556b6e43fd41d2287d93428c32e3 /src/qt/clientmodel.cpp | |
| parent | Merge pull request #2046 from Diapolo/traymenu (diff) | |
| download | discoin-3675588a30eae39921afbf00f32f86913d5d2bd5.tar.xz discoin-3675588a30eae39921afbf00f32f86913d5d2bd5.zip | |
Bitcoin-Qt: remove obsolete modal flag from GUI APIs
- as we (can) supply the CClientUIInterface::MODAL flag via the style
parameter, we don't need a separate bool for checking the modality
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); } } |