Changeset 1498 for trunk/dll/notify.c
- Timestamp:
- Jan 18, 2010, 1:57:01 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/notify.c
r1455 r1498 6 6 7 7 Copyright (c) 1993-98 M. Kimes 8 Copyright (c) 2006, 20 09Steven H.Levine8 Copyright (c) 2006, 2010 Steven H.Levine 9 9 10 10 17 Jul 06 SHL Use Win_Error … … 20 20 13 Jul 09 SHL Sync with renames 21 21 16 Jul 09 SHL Stop leaking hptrIcon 22 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *. 22 23 23 24 ***********************************************************************/ … … 211 212 212 213 hwnd = WinCreateWindow(hwndP, 213 WC_ERRORWND,214 (CHAR *) WC_ERRORWND, 214 215 p, 215 216 SS_TEXT | DT_LEFT | DT_VCENTER | WS_VISIBLE, … … 307 308 fThreadNotes = TRUE; 308 309 PrfWriteProfileData(fmprof, 309 FM3Str,310 (CHAR *) FM3Str, 310 311 "ThreadNotes", 311 312 &fThreadNotes, … … 344 345 345 346 if (PrfQueryProfileData(fmprof, 346 FM3Str, "NoteWndSwp", (PVOID) & swp, &size)) {347 (CHAR *) FM3Str, "NoteWndSwp", (PVOID) & swp, &size)) { 347 348 if (swp.fl & (SWP_HIDE | SWP_MINIMIZE)) { 348 349 fl |= SWP_MINIMIZE; … … 389 390 } 390 391 PrfWriteProfileData(fmprof, 391 FM3Str, "NoteWndSwp", (PVOID) & swp, sizeof(SWP));392 (CHAR *) FM3Str, "NoteWndSwp", (PVOID) & swp, sizeof(SWP)); 392 393 } 393 394 } … … 476 477 fThreadNotes = FALSE; // Remember not open 477 478 PrfWriteProfileData(fmprof, 478 FM3Str, "ThreadNotes", &fThreadNotes, sizeof(BOOL));479 (CHAR *) FM3Str, "ThreadNotes", &fThreadNotes, sizeof(BOOL)); 479 480 hwndNotify = (HWND)0; 480 481 }
Note:
See TracChangeset
for help on using the changeset viewer.