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:
parent
88bcfba3ca
commit
94525d9c4c
|
@ -620,9 +620,8 @@ mainWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
CloseHandle(thread);
|
CloseHandle(thread);
|
||||||
}
|
}
|
||||||
|
|
||||||
// notify of success
|
// notify of success: now disabled - it's silly to notify a success
|
||||||
askOkay(hwnd, getString(IDS_STARTED_TITLE),
|
//askOkay(hwnd, getString(IDS_STARTED_TITLE), getString(IDS_STARTED));
|
||||||
getString(IDS_STARTED));
|
|
||||||
|
|
||||||
// quit
|
// quit
|
||||||
PostQuitMessage(0);
|
PostQuitMessage(0);
|
||||||
|
|
Loading…
Reference in New Issue