use the new wxExecute() API (no real changes)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14893 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-04-01 21:33:50 +00:00
parent 4c1ef4220f
commit 0102f092ed

View File

@ -1294,7 +1294,7 @@ static long wxDoExecuteWithCapture(const wxString& command,
wxProcess *process = new wxProcess;
process->Redirect();
long rc = wxExecute(command, TRUE /* sync */, process);
long rc = wxExecute(command, wxEXEC_SYNC, process);
#if wxUSE_STREAMS
if ( rc != -1 )