aboutsummaryrefslogtreecommitdiff
path: root/src/qt/clientmodel.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2012-12-03 04:43:18 -0800
committerWladimir J. van der Laan <[email protected]>2012-12-03 04:43:18 -0800
commit2e2fca4439b4651e28c13237999ab84e06481c9d (patch)
tree8fe4a7164440556b6e43fd41d2287d93428c32e3 /src/qt/clientmodel.cpp
parentMerge pull request #2046 from Diapolo/traymenu (diff)
parentBitcoin-Qt: remove obsolete modal flag from GUI APIs (diff)
downloaddiscoin-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.cpp2
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);
}
}