]> git.saurik.com Git - wxWidgets.git/commitdiff
No real changes, just remove wxIsDebuggerRunning() stub from wxOSX.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 5 Apr 2012 18:39:57 +0000 (18:39 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 5 Apr 2012 18:39:57 +0000 (18:39 +0000)
There is no need to have a stub here when we already have in wx/debug.h, just
remove it.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71100 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/debug.h
src/osx/core/utilsexc_base.cpp

index 8a8530d97ccf594cdd947b63a56581d4497933a1..1bc8d5e1eae8b8a76d91502c2dcd5fefcc03e26b 100644 (file)
@@ -437,10 +437,9 @@ template<int x> struct static_assert_test{};
 /*
     Return true if we're running under debugger.
 
-    Currently this only really works under Win32 and Mac in CodeWarrior builds,
-    it always returns false in other cases.
+    Currently only really works under Win32 and just returns false elsewhere.
  */
-#if defined(__WXMAC__) || defined(__WIN32__)
+#if defined(__WIN32__)
     extern bool WXDLLIMPEXP_BASE wxIsDebuggerRunning();
 #else // !Mac
     inline bool wxIsDebuggerRunning() { return false; }
index 84f8a0e3a3d5daf2fa6794a2e87b2a8f3e0d6824..723597501245db6e62a15bf4ee52e22b5df53857 100644 (file)
@@ -54,12 +54,6 @@ extern WXDLLIMPEXP_BASE wxSocketManager *wxOSXSocketManagerCF;
 wxSocketManager *wxOSXSocketManagerCF = NULL;
 #endif // wxUSE_SOCKETS
 
-extern bool WXDLLEXPORT wxIsDebuggerRunning()
-{
-    // TODO : try to find out ...
-    return false;
-}
-
 #if ( !wxUSE_GUI && !wxOSX_USE_IPHONE ) || wxOSX_USE_COCOA_OR_CARBON
 
 // have a fast version for mac code that returns the version as a return value