From 94525d9c4cb25de413f5fd21994a4e27737d6d1b Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Sat, 11 Apr 2009 10:48:25 +0000 Subject: [PATCH] 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. --- cmd/launcher/launcher.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cmd/launcher/launcher.cpp b/cmd/launcher/launcher.cpp index e144b54b..20b59f72 100644 --- a/cmd/launcher/launcher.cpp +++ b/cmd/launcher/launcher.cpp @@ -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);