X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fab8784c715b09462d6b05dd93a3b4776cb205c9..164db92c14e9f1a7343259826da3653aeec945db:/src/os2/utilsexc.cpp diff --git a/src/os2/utilsexc.cpp b/src/os2/utilsexc.cpp index c50a311691..199781f7cf 100644 --- a/src/os2/utilsexc.cpp +++ b/src/os2/utilsexc.cpp @@ -128,7 +128,8 @@ MRESULT APIENTRY wxExecuteWindowCbk( HWND hWnd, long wxExecute( const wxString& rCommand, int flags, - wxProcess* pHandler) + wxProcess* pHandler, + const wxExecuteEnv *env) { if (rCommand.empty()) { @@ -219,6 +220,7 @@ long wxExecute( char** ppArgv , int flags , wxProcess* pHandler +, const wxExecuteEnv *env ) { wxString sCommand; @@ -234,6 +236,7 @@ long wxExecute( return wxExecute( sCommand ,flags ,pHandler + , env ); }