From: Robert Collins Date: Fri, 2 Nov 2001 00:52:06 +0000 (+0000) Subject: 2001-11-02 Robert Collins X-Git-Tag: Z-categories_merge_HEAD~7 X-Git-Url: https://cygwin.com/git/?a=commitdiff_plain;h=0b9af00ca35f5edcb89ca3d34709c92149fcc427;p=cygwin-apps%2Fsetup.git 2001-11-02 Robert Collins * splash.cc (dialog_proc): Return TRUE as specified in the WIN32 API. --- diff --git a/ChangeLog b/ChangeLog index 2945effd..b3245ae0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-11-02 Robert Collins + + * splash.cc (dialog_proc): Return TRUE as specified in the WIN32 API. + 2001-11-02 Pavel Tsekov * geturl.cc (is_showing): Remove. diff --git a/splash.cc b/splash.cc index 2064271b..c437630c 100644 --- a/splash.cc +++ b/splash.cc @@ -58,7 +58,7 @@ dialog_proc (HWND h, UINT message, WPARAM wParam, LPARAM lParam) { case WM_INITDIALOG: load_dialog (h); - return FALSE; + return TRUE; case WM_COMMAND: return HANDLE_WM_COMMAND (h, wParam, lParam, dialog_cmd); }