]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/utilsgui.cpp
Don't redefine symbols already defined in latest MinGW headers.
[wxWidgets.git] / src / msw / utilsgui.cpp
index 277535f0dc8d283754322da13ddc05cc0d975877..6eb4e851487fca547a5547789458c4d170fb4790 100644 (file)
@@ -1,5 +1,5 @@
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        msw/utilsgui.cpp
+// Name:        src/msw/utilsgui.cpp
 // Purpose:     Various utility functions only available in GUI
 // Author:      Vadim Zeitlin
 // Modified by:
@@ -374,7 +374,6 @@ bool wxLaunchDefaultApplication(const wxString& document, int flags)
 
     WinStruct<SHELLEXECUTEINFO> sei;
     sei.lpFile = document.wx_str();
-    sei.lpVerb = wxT("open");
 #ifdef __WXWINCE__
     sei.nShow = SW_SHOWNORMAL; // SW_SHOWDEFAULT not defined under CE (#10216)
 #else