Changeset 8794 for trunk/src


Ignore:
Timestamp:
Jun 27, 2002, 2:00:23 PM (23 years ago)
Author:
sandervl
Message:

PF: Enable OK button before sending BFFM_SELCHANGED (apparently done in windows)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/brsfolder.c

    r8613 r8794  
    1 /* $Id: brsfolder.c,v 1.9 2002-06-09 12:38:17 sandervl Exp $ */
     1/* $Id: brsfolder.c,v 1.10 2002-06-27 12:00:23 sandervl Exp $ */
    22
    33/*
     
    241241                pidlRet = lptvid->lpifq;
    242242                if (lpBrowseInfo->lpfn)
     243#ifdef __WIN32OS2__
     244                {
     245                   //@PF: windows enables the ok button before sending it notifies the app
     246                   EnableWindow(GetDlgItem(hWnd, 1), TRUE);
    243247                   (lpBrowseInfo->lpfn)(hWnd, BFFM_SELCHANGED, (LPARAM)pidlRet, lpBrowseInfo->lParam);
     248                }
     249#else
     250                   (lpBrowseInfo->lpfn)(hWnd, BFFM_SELCHANGED, (LPARAM)pidlRet, lpBrowseInfo->lParam);
     251#endif
    244252                break;
    245253
Note: See TracChangeset for help on using the changeset viewer.