diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-07-14 11:33:02 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-07-14 11:33:30 +0200 |
| commit | d4bed1a6d32e415b5d460bf60217d4950d28165e (patch) | |
| tree | 1fdb566e224f764b034ec7c629c33780d65b71be /src/init.cpp | |
| parent | Merge pull request #4513 (diff) | |
| parent | qt: Ignore showNormalIfMinimized in initialization or shutdown (diff) | |
| download | discoin-d4bed1a6d32e415b5d460bf60217d4950d28165e.tar.xz discoin-d4bed1a6d32e415b5d460bf60217d4950d28165e.zip | |
Merge pull request #4524
49d5712 qt: Ignore showNormalIfMinimized in initialization or shutdown (Wladimir J. van der Laan)
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index 9daad6ac8..99df237b2 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -179,13 +179,13 @@ void HandleSIGHUP(int) bool static InitError(const std::string &str) { - uiInterface.ThreadSafeMessageBox(str, "", CClientUIInterface::MSG_ERROR | CClientUIInterface::NOSHOWGUI); + uiInterface.ThreadSafeMessageBox(str, "", CClientUIInterface::MSG_ERROR); return false; } bool static InitWarning(const std::string &str) { - uiInterface.ThreadSafeMessageBox(str, "", CClientUIInterface::MSG_WARNING | CClientUIInterface::NOSHOWGUI); + uiInterface.ThreadSafeMessageBox(str, "", CClientUIInterface::MSG_WARNING); return true; } |