removing wxMacLaunch dependancy for ios

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76863 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2014-07-06 14:59:25 +00:00
parent 79eaaca192
commit bf0a634c09

View File

@@ -452,7 +452,7 @@ private:
// wxExecute implementations
// ----------------------------------------------------------------------------
#if defined(__DARWIN__)
#if defined(__DARWIN__) && !defined(__WXOSX_IPHONE__)
bool wxMacLaunch(char **argv);
#endif
@@ -577,7 +577,7 @@ long wxExecute(char **argv, int flags, wxProcess *process,
wxT("wxExecute() can be called only from the main thread") );
#endif // wxUSE_THREADS
#ifdef __DARWIN__
#if defined(__DARWIN__) && !defined(__WXOSX_IPHONE__)
// wxMacLaunch() only executes app bundles and only does it asynchronously.
// It returns false if the target is not an app bundle, thus falling
// through to the regular code for non app bundles.