Changeset 472 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/MakeExe.cpp
- Timestamp:
- Mar 31, 2008, 12:33:24 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/MakeExe.cpp
r467 r472 181 181 else 182 182 { 183 compiler. messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが壊れています。").c_str() );183 compiler.errorMessenger.Output( 203, path.GetFullPath() ); 184 184 isSuccessfulLoadStaticLinkLibrary = false; 185 185 } … … 187 187 else 188 188 { 189 compiler. messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが存在しません。").c_str() );189 compiler.errorMessenger.Output( 202, path.GetFullPath() ); 190 190 isSuccessfulLoadStaticLinkLibrary = false; 191 191 } … … 204 204 else 205 205 { 206 compiler. messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが壊れています。").c_str() );206 compiler.errorMessenger.Output( 203, path.GetFullPath() ); 207 207 isSuccessfulLoadStaticLinkLibrary = false; 208 208 } … … 210 210 else 211 211 { 212 compiler. messenger.Output( ((string)"\"" + path.GetFullPath() + "\" ファイルが存在しません。").c_str() );212 compiler.errorMessenger.Output( 202, path.GetFullPath() ); 213 213 isSuccessfulLoadStaticLinkLibrary = false; 214 214 } … … 280 280 SetDlgItemText(hMainDlg,IDOK,STRING_CLOSE); 281 281 282 // エラーがない場合はビルド成功とする 283 if( !compiler.errorMessenger.HasError() ) 284 { 285 // ビルド成功 286 compiler.BuildSuccessful(); 287 } 288 282 289 #ifdef _DEBUG 283 290 // デバッグモードのときはダイアログが隠れている
Note:
See TracChangeset
for help on using the changeset viewer.