X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c6f9dfe8ef435ffe848961cedeaa21c50946d982..35bb3cb155917b4287fb2a3841bea22919a3d499:/samples/exec/exec.cpp 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 )