From 27d1d8060d111debf3684af4e55c36aa01c41585 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 9 Nov 2013 13:37:47 +0000 Subject: [PATCH] Clarify the current OSXIsGUIApplication() status in comments. Mention that it doesn't work yet in 3.0 branch. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@75146 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/osx/app.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/wx/osx/app.h b/include/wx/osx/app.h index 767ee9c8bb..0d74d5fa76 100644 --- a/include/wx/osx/app.h +++ b/include/wx/osx/app.h @@ -143,8 +143,12 @@ public: virtual void MacNewFile() ; // in response of a reopen-application apple event virtual void MacReopenApp() ; - - // override this to return false from a non-bundled console app in order to stay in background ... + + // Notice that this is just a placeholder and doesn't work yet! + // + // Override this to return false from a non-bundled console app in order to + // stay in background instead of being made a foreground application as + // happens by default. virtual bool OSXIsGUIApplication() { return true; } #if wxOSX_USE_COCOA_OR_IPHONE