]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix after last commit
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 2 Aug 2008 22:24:15 +0000 (22:24 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 2 Aug 2008 22:24:15 +0000 (22:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54936 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/utilscmn.cpp

index 9b5d7cac6b06119937e088640b75cacbffdf11cf..57f68bc3407b2a360ec3bca01a02827fad32ad26 100644 (file)
@@ -943,7 +943,8 @@ bool wxLaunchDefaultApplication(const wxString& document, int flags)
 
 #ifdef __WXMAC__
     static const char * const OPEN_CMD = "/usr/bin/open";
 
 #ifdef __WXMAC__
     static const char * const OPEN_CMD = "/usr/bin/open";
-    if ( wxFileExists(OPEN_CMD) && wxExecute(OPEN_CMD + " " + document) )
+    if ( wxFileExists(OPEN_CMD) &&
+            wxExecute(wxString(OPEN_CMD) + " " + document) )
         return true;
 #elif defined(__UNIX__)
     // Our best best is to use xdg-open from freedesktop.org cross-desktop
         return true;
 #elif defined(__UNIX__)
     // Our best best is to use xdg-open from freedesktop.org cross-desktop