From ce0bb89d45c4043fae815a822069b608e810d58f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 15 Jul 2007 19:31:00 +0000 Subject: [PATCH] no real changes, just added an extra status message git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47484 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/exec/exec.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/samples/exec/exec.cpp b/samples/exec/exec.cpp index 6cff3c090c..19d2dba153 100644 --- a/samples/exec/exec.cpp +++ b/samples/exec/exec.cpp @@ -747,9 +747,12 @@ void MyFrame::OnExecWithRedirect(wxCommandEvent& WXUNUSED(event)) if ( sync ) { + wxLogStatus( _T("'%s' is running please wait..."), cmd.c_str() ); + wxArrayString output, errors; int code = wxExecute(cmd, output, errors); - wxLogStatus(_T("command '%s' terminated with exit code %d."), + + wxLogStatus(_T("Command '%s' terminated with exit code %d."), cmd.c_str(), code); if ( code != -1 ) -- 2.45.2