]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/exec/exec.cpp
makefiels updated to reflect removal of db sample
[wxWidgets.git] / samples / exec / exec.cpp
index 6cff3c090cc42777bde483d1fe62f190acc9aac0..19d2dba153a6a16b7086e3b4f82806a48629f46a 100644 (file)
@@ -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 )