Changeset 5226 for trunk/src


Ignore:
Timestamp:
Feb 21, 2001, 8:52:33 AM (25 years ago)
Author:
bird
Message:

Changed order of dismmiss and WM_QUIT - hope this solves zombi problem.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/utils/Win32kCC.c

    r5160 r5226  
    1 /* $Id: Win32kCC.c,v 1.13 2001-02-17 20:25:44 bird Exp $
     1/* $Id: Win32kCC.c,v 1.14 2001-02-21 07:52:33 bird Exp $
    22 *
    33 * Win32CC - Win32k Control Center.
     
    323323                         WinGetLastError(pThis->hab),
    324324                         getLastErrorMsg(pThis->hab));
     325                WinPostMsg(hwnd, WM_QUIT, NULL, NULL);
    325326                WinDismissDlg(hwnd, 0);
    326                 WinPostMsg(hwnd, WM_QUIT, NULL, NULL);
    327327                free(pThis);
    328328                return FALSE;
     
    553553                    /* Close the dialog */
    554554                    fNotExit = FALSE;
     555                    WinPostMsg(hwnd, WM_QUIT, NULL, NULL);
    555556                    WinDismissDlg(hwnd, 0);
    556                     WinPostMsg(hwnd, WM_QUIT, NULL, NULL);
    557557                    break;
    558558
     
    729729                Complain(hwnd, IDS_ERR_QUERYOPTIONSTATUS, rc);
    730730                fNotExit = FALSE;
     731                WinPostMsg(hwnd, WM_QUIT, NULL, NULL);
    731732                WinDismissDlg(hwnd, 0);
    732                 WinPostMsg(hwnd, WM_QUIT, NULL, NULL);
    733733                return NULL;
    734734            }
Note: See TracChangeset for help on using the changeset viewer.