diff options
author | Kevin Walzer <kw@codebykevin.com> | 2014-11-18 14:46:17 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2014-11-18 14:46:17 (GMT) |
commit | 8c8ac1223aab46115a02532726d4d2e97f2cf958 (patch) | |
tree | 24dc1b595d4ada05a96713cb785aaba21fb29333 /macosx | |
parent | f72ac945c163e97f7265c96b93fefd334c8008a5 (diff) | |
download | tk-8c8ac1223aab46115a02532726d4d2e97f2cf958.zip tk-8c8ac1223aab46115a02532726d4d2e97f2cf958.tar.gz tk-8c8ac1223aab46115a02532726d4d2e97f2cf958.tar.bz2 |
Remove residual private API calls from Tk/Mac after Mac App Store review flagged them as being present.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXInit.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/macosx/tkMacOSXInit.c b/macosx/tkMacOSXInit.c index 1d14990..b9514b4 100644 --- a/macosx/tkMacOSXInit.c +++ b/macosx/tkMacOSXInit.c @@ -87,11 +87,9 @@ static void keyboardChanged(CFNotificationCenterRef center, void *observer, CFSt #endif } - (void)_setupEventLoop { - _running = 1; - if (!_appFlags._hasBeenRun) { - _appFlags._hasBeenRun = YES; - [self finishLaunching]; - } + + /*Remove private API calls here.*/ + [self finishLaunching]; [self setWindowsNeedUpdate:YES]; } - (void)_setup:(Tcl_Interp *)interp { |