diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-06-13 23:12:22 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-06-13 23:12:22 -0700 |
| commit | 0f10b21719e1b0d9683a142f0a7105e65f095694 (patch) | |
| tree | e30dcb8b0da343c8ba9ddaca27b7c2c78b7d865a /src/main.cpp | |
| parent | Merge pull request #1420 from Diapolo/extend_showNormalIfMinimized (diff) | |
| parent | introduce a new StartShutdown() function, which starts a thread with Shutdown... (diff) | |
| download | discoin-0f10b21719e1b0d9683a142f0a7105e65f095694.tar.xz discoin-0f10b21719e1b0d9683a142f0a7105e65f095694.zip | |
Merge pull request #1439 from Diapolo/ClientShutdown
re-work Shutdown() function
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 50a740d16..fa3eb592a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1875,7 +1875,7 @@ bool CheckDiskSpace(uint64 nAdditionalBytes) strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); uiInterface.ThreadSafeMessageBox(strMessage, "Bitcoin", CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL); - uiInterface.QueueShutdown(); + StartShutdown(); return false; } return true; |