Skip to content

Commit

Permalink
レビュー指摘に対応
Browse files Browse the repository at this point in the history
  • Loading branch information
beru committed Sep 20, 2021
1 parent d0d63b7 commit 634008b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sakura_core/view/CEditView_ExecCmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,9 @@ bool CEditView::ExecCmd( const WCHAR* pszCmd, int nFlgOpt, const WCHAR* pszCurDi
if( bCancelEnd && bOutputExtInfo ){
// 2006.12.03 maru アウトプットウィンドウにのみ出力
//最後にテキストを追加
oa.OutputW( CLoadString().LoadString(STR_EDITVIEW_EXECCMD_STOP) );
// L"\r\n中断しました。\r\n"
std::wstring msg( LS(STR_EDITVIEW_EXECCMD_STOP) );
oa.OutputW( msg.c_str(), (int)msg.length() );
}

{
Expand Down

0 comments on commit 634008b

Please sign in to comment.