Changeset 213
- Timestamp:
- Aug 23, 2002, 9:25:22 PM (23 years ago)
- Location:
- trunk/src/helpers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/dialog.c
r210 r213 3069 3069 *@@changed V0.9.16 (2001-12-06) [umoeller]: fixed bad owner if not direct desktop child 3070 3070 *@@changed V0.9.19 (2002-04-24) [umoeller]: added excpt handling 3071 +@@changed V0.9.21 (2002-08-21) [umoeller]: now setting wait pointer 3071 3072 */ 3072 3073 … … 3082 3083 { 3083 3084 APIRET arc = NO_ERROR; 3085 3086 HPOINTER hptrOld = winhSetWaitPointer(); // V0.9.21 (2002-08-21) [umoeller] 3084 3087 3085 3088 TRY_LOUD(excpt1) … … 3242 3245 szErr); 3243 3246 } 3247 3248 WinSetPointer(HWND_DESKTOP, hptrOld); // V0.9.21 (2002-08-21) [umoeller] 3244 3249 3245 3250 return arc; -
trunk/src/helpers/winh.c
r210 r213 3930 3930 if (hwndFrame) 3931 3931 { 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 3944 3942 { 3945 3943 if (pswpFrame)
Note:
See TracChangeset
for help on using the changeset viewer.