@@ -809,7 +809,7 @@ void CViewCommander::Command_REPLACE_ALL()
809809 int nReplaceNum = 0 ;
810810 HWND hwndStatic = ::GetDlgItem( hwndCancel, IDC_STATIC_KENSUU );
811811 WCHAR szLabel[64 ];
812- _itot ( nReplaceNum, szLabel, 10 );
812+ _itow ( nReplaceNum, szLabel, 10 );
813813 ::SendMessage ( hwndStatic, WM_SETTEXT, 0 , (LPARAM)szLabel );
814814
815815 CLayoutRange sRangeA ; // 選択範囲
@@ -1033,7 +1033,7 @@ void CViewCommander::Command_REPLACE_ALL()
10331033 Progress_SetPos ( hwndProgress, nNewPos );
10341034 nOldPos = nNewPos;
10351035 }
1036- _itot ( nReplaceNum, szLabel, 10 );
1036+ _itow ( nReplaceNum, szLabel, 10 );
10371037 ::SendMessage ( hwndStatic, WM_SETTEXT, 0 , (LPARAM)szLabel );
10381038 }
10391039
@@ -1449,7 +1449,7 @@ void CViewCommander::Command_REPLACE_ALL()
14491449 }
14501450 // >> 2002/03/26 Azumaiya
14511451
1452- _itot ( nReplaceNum, szLabel, 10 );
1452+ _itow ( nReplaceNum, szLabel, 10 );
14531453 ::SendMessage ( hwndStatic, WM_SETTEXT, 0 , (LPARAM)szLabel );
14541454
14551455 if ( !cDlgCancel.IsCanceled () ){
0 commit comments