Changeset 302 in dev for trunk/abdev/ProjectEditor/ProjectEditor.cpp
- Timestamp:
- Aug 24, 2007, 2:13:12 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/ProjectEditor/ProjectEditor.cpp
r84 r302 977 977 char temporary[MAX_PATH]; 978 978 979 FileType=DialogBox(hResInst,MAKEINTRESOURCE(IDD_NEWFILE),hOwner, DlgNewFile);979 FileType=DialogBox(hResInst,MAKEINTRESOURCE(IDD_NEWFILE),hOwner,(DLGPROC)DlgNewFile); 980 980 if(FileType==-1) return; 981 981 … … 1635 1635 case IDM_CODE_SAVE: 1636 1636 //文字コードを指定して保存 1637 DialogBox(hResInst,MAKEINTRESOURCE(IDD_CODE_SAVE),hOwner, nkfDlgCodeSave);1637 DialogBox(hResInst,MAKEINTRESOURCE(IDD_CODE_SAVE),hOwner,(DLGPROC)nkfDlgCodeSave); 1638 1638 return 0; 1639 1639 case IDM_ALLSAVE: … … 1883 1883 return 0; 1884 1884 case IDM_FIND: 1885 DialogBox(hResInst,MAKEINTRESOURCE(IDD_FIND),hOwner, DlgFind);1885 DialogBox(hResInst,MAKEINTRESOURCE(IDD_FIND),hOwner,(DLGPROC)DlgFind); 1886 1886 return 0; 1887 1887 case IDM_PERMUTATION: 1888 DialogBox(hResInst,MAKEINTRESOURCE(IDD_PERMUTATION),hOwner, DlgPermutation);1888 DialogBox(hResInst,MAKEINTRESOURCE(IDD_PERMUTATION),hOwner,(DLGPROC)DlgPermutation); 1889 1889 return 0; 1890 1890 … … 1915 1915 /////////////////////// 1916 1916 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); 1918 1918 return 0; 1919 1919 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); 1921 1921 return 0; 1922 1922 #endif //THETEXT … … 2110 2110 int idProcess; 2111 2111 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); 2113 2113 if(idProcess==0) return 0; 2114 2114 … … 2343 2343 2344 2344 case IDM_ABOUT: 2345 DialogBox(hResInst,MAKEINTRESOURCE(IDD_ABOUT),hwnd, DialogAbout);2345 DialogBox(hResInst,MAKEINTRESOURCE(IDD_ABOUT),hwnd,(DLGPROC)DialogAbout); 2346 2346 return 0; 2347 2347
Note:
See TracChangeset
for help on using the changeset viewer.