1. fixed small bug with toolbar size updates

2. fixed bug with showing message box from wxApp::OnInit()
3. fixed crash on DDE client disconnection
4. fixed wxExecute() which was broken since quite some time (hidden
   window creation problems) and in wxShell()


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5434 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-01-15 22:36:52 +00:00
parent 4b89c61845
commit 0d7ea90249
8 changed files with 139 additions and 94 deletions

View File

@@ -454,7 +454,7 @@ bool wxShell(const wxString& command)
cmd.Printf(wxT("%s /c %s"), shell, command.c_str());
}
return wxExecute(cmd, FALSE) != 0;
return wxExecute(cmd, TRUE /* sync */) != 0;
}
// ----------------------------------------------------------------------------