Changeset 55 in dev for ProjectEditor/DialogBoxes.cpp
- Timestamp:
- Feb 13, 2007, 3:14:57 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ProjectEditor/DialogBoxes.cpp
r22 r55 328 328 if(SendDlgItemMessage(hwnd,IDC_STRICT,BM_GETCHECK,0,0)) 329 329 NewProjectInfo.dwOption|=PJ_OP_STRICT; 330 if(SendDlgItemMessage(hwnd,IDC_UNICODE,BM_GETCHECK,0,0)) 331 NewProjectInfo.dwOption|=PJ_OP_UNICODE; 330 332 if(SendDlgItemMessage(hwnd,IDC_API_COMMCTRL,BM_GETCHECK,0,0)) 331 333 NewProjectInfo.dwOption|=PJ_OP_COMMCTRL; … … 797 799 SendDlgItemMessage(hwnd,IDC_STRICT,BM_SETCHECK,BST_CHECKED,0); 798 800 801 //Unicode 802 if(temp_dwPjOption&PJ_OP_UNICODE) 803 SendDlgItemMessage(hwnd,IDC_UNICODE,BM_SETCHECK,BST_CHECKED,0); 804 799 805 break; 800 806 case WM_NOTIFY: … … 808 814 temp_dwPjOption|=PJ_OP_STRICT; 809 815 else temp_dwPjOption&=~PJ_OP_STRICT; 816 817 //Unicode 818 if(SendDlgItemMessage(hwnd,IDC_UNICODE,BM_GETCHECK,0,0)) 819 temp_dwPjOption|=PJ_OP_UNICODE; 820 else temp_dwPjOption&=~PJ_OP_UNICODE; 810 821 811 822 if(nmhdr->code==PSN_APPLY) SaveSetting_DlgPjOption();
Note:
See TracChangeset
for help on using the changeset viewer.