From: Vadim Zeitlin Date: Sun, 8 Sep 2002 00:41:16 +0000 (+0000) Subject: corrected wxShell() ret code X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/011a524e9e60a28719f34b1f78d40e35a08a41a8 corrected wxShell() ret code git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17068 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/utils.cpp b/src/msw/utils.cpp index 9322dcb46e..047ef9a22e 100644 --- a/src/msw/utils.cpp +++ b/src/msw/utils.cpp @@ -867,7 +867,7 @@ bool wxShell(const wxString& command) cmd.Printf(wxT("%s /c %s"), shell, command.c_str()); } - return wxExecute(cmd, TRUE /* sync */) != 0; + return wxExecute(cmd, wxEXEC_SYNC) == 0; } // Shutdown or reboot the PC