Changeset 119 in dev for ProjectEditor/DialogBoxes.cpp


Ignore:
Timestamp:
May 12, 2007, 6:38:50 PM (17 years ago)
Author:
dai_9181
Message:

[IDE] #strictオプションを取り除いた。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ProjectEditor/DialogBoxes.cpp

    r55 r119  
    305305        case WM_INITDIALOG:
    306306
    307             //#strict指定
    308             SendDlgItemMessage(hwnd,IDC_STRICT,BM_SETCHECK,BST_CHECKED,0);
    309 
    310307            break;
    311308        case WM_NOTIFY:
     
    326323                case PSN_WIZNEXT:
    327324                    NewProjectInfo.dwOption=PJ_OP_RC_MANIFEST;
    328                     if(SendDlgItemMessage(hwnd,IDC_STRICT,BM_GETCHECK,0,0))
    329                         NewProjectInfo.dwOption|=PJ_OP_STRICT;
    330325                    if(SendDlgItemMessage(hwnd,IDC_UNICODE,BM_GETCHECK,0,0))
    331326                        NewProjectInfo.dwOption|=PJ_OP_UNICODE;
     
    795790            SetDlgItemText(hwnd,IDC_EDIT_DEBUG,ProjectInfo.lpszOutput_Debug);
    796791
    797             //厳密な型チェック
    798             if(temp_dwPjOption&PJ_OP_STRICT)
    799                 SendDlgItemMessage(hwnd,IDC_STRICT,BM_SETCHECK,BST_CHECKED,0);
    800 
    801792            //Unicode
    802793            if(temp_dwPjOption&PJ_OP_UNICODE)
     
    809800                GetDlgItemText(hwnd,IDC_EDIT_RELEASE,temp_lpszOutputRelease,MAX_PATH);
    810801                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;
    816802
    817803                //Unicode
Note: See TracChangeset for help on using the changeset viewer.