Changeset 119 in dev for ProjectEditor/DialogBoxes.cpp
- Timestamp:
- May 12, 2007, 6:38:50 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ProjectEditor/DialogBoxes.cpp
r55 r119 305 305 case WM_INITDIALOG: 306 306 307 //#strict指定308 SendDlgItemMessage(hwnd,IDC_STRICT,BM_SETCHECK,BST_CHECKED,0);309 310 307 break; 311 308 case WM_NOTIFY: … … 326 323 case PSN_WIZNEXT: 327 324 NewProjectInfo.dwOption=PJ_OP_RC_MANIFEST; 328 if(SendDlgItemMessage(hwnd,IDC_STRICT,BM_GETCHECK,0,0))329 NewProjectInfo.dwOption|=PJ_OP_STRICT;330 325 if(SendDlgItemMessage(hwnd,IDC_UNICODE,BM_GETCHECK,0,0)) 331 326 NewProjectInfo.dwOption|=PJ_OP_UNICODE; … … 795 790 SetDlgItemText(hwnd,IDC_EDIT_DEBUG,ProjectInfo.lpszOutput_Debug); 796 791 797 //厳密な型チェック798 if(temp_dwPjOption&PJ_OP_STRICT)799 SendDlgItemMessage(hwnd,IDC_STRICT,BM_SETCHECK,BST_CHECKED,0);800 801 792 //Unicode 802 793 if(temp_dwPjOption&PJ_OP_UNICODE) … … 809 800 GetDlgItemText(hwnd,IDC_EDIT_RELEASE,temp_lpszOutputRelease,MAX_PATH); 810 801 GetDlgItemText(hwnd,IDC_EDIT_DEBUG,temp_lpszOutputDebug,MAX_PATH); 811 812 //厳密な型チェック813 if(SendDlgItemMessage(hwnd,IDC_STRICT,BM_GETCHECK,0,0))814 temp_dwPjOption|=PJ_OP_STRICT;815 else temp_dwPjOption&=~PJ_OP_STRICT;816 802 817 803 //Unicode
Note:
See TracChangeset
for help on using the changeset viewer.