Ignore:
Timestamp:
Aug 24, 2007, 2:13:12 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/ProjectEditor/ProjectEditor.cpp

    r84 r302  
    977977    char temporary[MAX_PATH];
    978978
    979     FileType=DialogBox(hResInst,MAKEINTRESOURCE(IDD_NEWFILE),hOwner,DlgNewFile);
     979    FileType=DialogBox(hResInst,MAKEINTRESOURCE(IDD_NEWFILE),hOwner,(DLGPROC)DlgNewFile);
    980980    if(FileType==-1) return;
    981981
     
    16351635                case IDM_CODE_SAVE:
    16361636                    //文字コードを指定して保存
    1637                     DialogBox(hResInst,MAKEINTRESOURCE(IDD_CODE_SAVE),hOwner,nkfDlgCodeSave);
     1637                    DialogBox(hResInst,MAKEINTRESOURCE(IDD_CODE_SAVE),hOwner,(DLGPROC)nkfDlgCodeSave);
    16381638                    return 0;
    16391639                case IDM_ALLSAVE:
     
    18831883                    return 0;
    18841884                case IDM_FIND:
    1885                     DialogBox(hResInst,MAKEINTRESOURCE(IDD_FIND),hOwner,DlgFind);
     1885                    DialogBox(hResInst,MAKEINTRESOURCE(IDD_FIND),hOwner,(DLGPROC)DlgFind);
    18861886                    return 0;
    18871887                case IDM_PERMUTATION:
    1888                     DialogBox(hResInst,MAKEINTRESOURCE(IDD_PERMUTATION),hOwner,DlgPermutation);
     1888                    DialogBox(hResInst,MAKEINTRESOURCE(IDD_PERMUTATION),hOwner,(DLGPROC)DlgPermutation);
    18891889                    return 0;
    18901890
     
    19151915                ///////////////////////
    19161916                case IDM_STRING_COUNT:
    1917                     DialogBoxParam(hResInst,MAKEINTRESOURCE(IDD_STRING_COUNT),hOwner,DlgStringCount,0);
     1917                    DialogBoxParam(hResInst,MAKEINTRESOURCE(IDD_STRING_COUNT),hOwner,(DLGPROC)DlgStringCount,0);
    19181918                    return 0;
    19191919                case IDM_SEL_STRING_COUNT:
    1920                     DialogBoxParam(hResInst,MAKEINTRESOURCE(IDD_STRING_COUNT),hOwner,DlgStringCount,1);
     1920                    DialogBoxParam(hResInst,MAKEINTRESOURCE(IDD_STRING_COUNT),hOwner,(DLGPROC)DlgStringCount,1);
    19211921                    return 0;
    19221922#endif //THETEXT
     
    21102110                    int idProcess;
    21112111                    DWORD dwPlatform;
    2112                     idProcess=DialogBoxParam(hResInst,MAKEINTRESOURCE(IDD_ATTACH),hwnd,DlgAttach,(LPARAM)&dwPlatform);
     2112                    idProcess=DialogBoxParam(hResInst,MAKEINTRESOURCE(IDD_ATTACH),hwnd,(DLGPROC)DlgAttach,(LPARAM)&dwPlatform);
    21132113                    if(idProcess==0) return 0;
    21142114
     
    23432343
    23442344                case IDM_ABOUT:
    2345                     DialogBox(hResInst,MAKEINTRESOURCE(IDD_ABOUT),hwnd,DialogAbout);
     2345                    DialogBox(hResInst,MAKEINTRESOURCE(IDD_ABOUT),hwnd,(DLGPROC)DialogAbout);
    23462346                    return 0;
    23472347
Note: See TracChangeset for help on using the changeset viewer.