]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/utilsexc.cpp
Reapplied patch for drawing background of custom items
[wxWidgets.git] / src / mac / carbon / utilsexc.cpp
index fc4b8d28ff5d5ff3f10dc13f4f579afbc2a9a6eb..5c8788f26d31b8d0e116099eb6448ee294354517 100644 (file)
@@ -9,39 +9,4 @@
 // Licence:       wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-//#pragma implementation
-#endif
-
-#include "wx/wxprec.h"
-#ifndef WX_PRECOMP
-    #include "wx/log.h"
-    #include "wx/utils.h"
-#endif //ndef WX_PRECOMP
-
-#ifndef __DARWIN__
-
-#include "wx/mac/private.h"
-#include "LaunchServices.h"
-
-long wxExecute(const wxString& command, int flags, wxProcess *WXUNUSED(handler))
-{
-    wxASSERT_MSG( flags == wxEXEC_ASYNC,
-        wxT("wxExecute: Only wxEXEC_ASYNC is supported") );
-
-    FSRef fsRef ;
-    OSErr err = noErr ;
-    err = wxMacPathToFSRef( command , &fsRef ) ;
-    if ( noErr == err )
-    {
-        err = LSOpenFSRef( &fsRef , NULL ) ;
-    }
-
-    // 0 means execution failed. Returning non-zero is a PID, but not
-    // on Mac where PIDs are 64 bits and won't fit in a long, so we
-    // return a dummy value for now.
-    return ( err == noErr ) ? -1 : 0;
-}
-
-#endif //ndef __DARWIN__
-
+// TODO REMOVE