Skip to content

Commit

Permalink
Merge pull request #1721 from beru/ExecCmd_LS_overwritten_STR_EDITVIE…
Browse files Browse the repository at this point in the history
…W_EXECCMD_STOP

外部コマンド実行でキャンセルした時のメッセージが異なる問題を修正
  • Loading branch information
beru authored Sep 20, 2021
2 parents d578ff4 + 634008b commit f706330
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( LS(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 f706330

Please sign in to comment.