Changeset 1498 for trunk/dll/seeall.c
- Timestamp:
- Jan 18, 2010, 1:57:01 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/seeall.c
r1438 r1498 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2001, 20 09Steven H. Levine9 Copyright (c) 2001, 2010 Steven H. Levine 10 10 11 11 16 Oct 02 SHL Handle large partitions … … 49 49 08 Mar 09 GKY Removed variable aurguments from docopyf and unlinkf (not used) 50 50 28 Jun 09 GKY Added AddBackslashToPath() to remove repeatative code. 51 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *. 51 52 52 53 ***********************************************************************/ … … 785 786 786 787 WinSetWindowText(WinWindowFromID(hwndFrame, SEEALL_STATUS), 787 GetPString(IDS_FITTINGTEXT));788 (CHAR *) GetPString(IDS_FITTINGTEXT)); 788 789 DosError(FERR_DISABLEHARDERR); 789 790 if (!DosQueryFSInfo(toupper(*newname) - '@', … … 811 812 WinSetWindowText(WinWindowFromID(hwndFrame, 812 813 SEEALL_STATUS), 813 GetPString(IDS_COULDNTFITTEXT));814 (CHAR *) GetPString(IDS_COULDNTFITTEXT)); 814 815 } 815 816 } … … 1207 1208 DosError(FERR_DISABLEHARDERR); 1208 1209 WinRegisterClass(hab2, 1209 WC_OBJECTWINDOW,1210 (CHAR *) WC_OBJECTWINDOW, 1210 1211 SeeObjWndProc, 0, sizeof(PVOID)); 1211 1212 hwndObj = WinCreateWindow(HWND_OBJECT, 1212 WC_OBJECTWINDOW,1213 (CHAR *) WC_OBJECTWINDOW, 1213 1214 (PSZ) NULL, 1214 1215 0, … … 2635 2636 if (!DosCreateMutexSem(NULL, &pAD->hmtxScan, 0, FALSE)) { 2636 2637 pAD->hwndStatus = WinCreateWindow(hwndFrame, 2637 WC_SEESTATUS,2638 (CHAR *) WC_SEESTATUS, 2638 2639 NullStr, 2639 2640 WS_VISIBLE | SS_TEXT | … … 3135 3136 Runtime_Error(pszSrcFile, __LINE__, NULL); 3136 3137 else { 3137 WinSetWindowText(pAD->hwndStatus, GetPString(IDS_DRAGGINGFILESTEXT));3138 WinSetWindowText(pAD->hwndStatus, (CHAR *) GetPString(IDS_DRAGGINGFILESTEXT)); 3138 3139 DragList(hwnd, (HWND) 0, list, TRUE); 3139 3140 FreeList(list); … … 4397 4398 WS_VISIBLE, 4398 4399 &FrameFlags, 4399 WC_SEEALL,4400 GetPString(IDS_SEEALLTITLETEXT),4400 (CHAR *) WC_SEEALL, 4401 (CHAR *) GetPString(IDS_SEEALLTITLETEXT), 4401 4402 WS_VISIBLE | fwsAnimate, 4402 4403 FM3ModHandle, SEEALL_FRAME, &hwndClient);
Note:
See TracChangeset
for help on using the changeset viewer.