Disabled the successfully started message box. We don't need to notify the user if something is going well.

Less modal windows is always better.
This commit is contained in:
Sorin Sbarnea 2009-04-11 10:48:25 +00:00
parent 88bcfba3ca
commit 94525d9c4c
1 changed files with 2 additions and 3 deletions

View File

@ -620,9 +620,8 @@ mainWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
CloseHandle(thread);
}
// notify of success
askOkay(hwnd, getString(IDS_STARTED_TITLE),
getString(IDS_STARTED));
// notify of success: now disabled - it's silly to notify a success
//askOkay(hwnd, getString(IDS_STARTED_TITLE), getString(IDS_STARTED));
// quit
PostQuitMessage(0);