Changeset 213


Ignore:
Timestamp:
Aug 23, 2002, 9:25:22 PM (23 years ago)
Author:
umoeller
Message:

First attempt at folder split view.

Location:
trunk/src/helpers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/dialog.c

    r210 r213  
    30693069 *@@changed V0.9.16 (2001-12-06) [umoeller]: fixed bad owner if not direct desktop child
    30703070 *@@changed V0.9.19 (2002-04-24) [umoeller]: added excpt handling
     3071 +@@changed V0.9.21 (2002-08-21) [umoeller]: now setting wait pointer
    30713072 */
    30723073
     
    30823083{
    30833084    APIRET      arc = NO_ERROR;
     3085
     3086    HPOINTER    hptrOld = winhSetWaitPointer();     // V0.9.21 (2002-08-21) [umoeller]
    30843087
    30853088    TRY_LOUD(excpt1)
     
    32423245                     szErr);
    32433246    }
     3247
     3248    WinSetPointer(HWND_DESKTOP, hptrOld); // V0.9.21 (2002-08-21) [umoeller]
    32443249
    32453250    return arc;
  • trunk/src/helpers/winh.c

    r210 r213  
    39303930    if (hwndFrame)
    39313931    {
    3932         *phwndClient = WinCreateWindow(hwndFrame,      // parent
    3933                                        (PSZ)pcszClassClient, // class
    3934                                        NULL,           // no title
    3935                                        flStyleClient,  // style
    3936                                        0,0,0,0,        // size and position = 0
    3937                                        hwndFrame,      // owner
    3938                                        HWND_BOTTOM,    // bottom z-order
    3939                                        FID_CLIENT,     // frame window ID
    3940                                        pClientCtlData, // class data
    3941                                        NULL);          // no presparams
    3942 
    3943         if (*phwndClient)
     3932        if (*phwndClient = WinCreateWindow(hwndFrame,      // parent
     3933                                           (PSZ)pcszClassClient, // class
     3934                                           NULL,           // no title
     3935                                           flStyleClient,  // style
     3936                                           0,0,0,0,        // size and position = 0
     3937                                           hwndFrame,      // owner
     3938                                           HWND_BOTTOM,    // bottom z-order
     3939                                           FID_CLIENT,     // frame window ID
     3940                                           pClientCtlData, // class data
     3941                                           NULL))          // no presparams
    39443942        {
    39453943            if (pswpFrame)
Note: See TracChangeset for help on using the changeset viewer.