Changeset 1498 for trunk/dll/input.c
- Timestamp:
- Jan 18, 2010, 1:57:01 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/input.c
r1398 r1498 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2005, 20 09Steven H. Levine9 Copyright (c) 2005, 2010 Steven H. Levine 10 10 11 11 28 May 05 SHL Use saymsg … … 13 13 22 Mar 07 GKY Use QWL_USER 14 14 20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat 15 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *. 15 16 16 17 ***********************************************************************/ … … 55 56 } 56 57 if (psip->prompt && *psip->prompt) 57 WinSetDlgItemText(hwnd, STR_PROMPT, psip->prompt);58 WinSetDlgItemText(hwnd, STR_PROMPT, (CHAR *) psip->prompt); 58 59 if (psip->ret && *psip->ret) { 59 60 WinSetDlgItemText(hwnd, STR_INPUT, psip->ret); … … 63 64 *psip->ret = 0; 64 65 if (psip->title && *psip->title) 65 WinSetWindowText(hwnd, psip->title);66 WinSetWindowText(hwnd, (CHAR *) psip->title); 66 67 break; 67 68
Note:
See TracChangeset
for help on using the changeset viewer.