X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/08bee49e39023211dce786de9cf687b35849e427..d3f81b85331b14943862a0c0df5ef8adb4426ad4:/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 ); }