diff options
author | Kevin Walzer <kw@codebykevin.com> | 2014-11-18 14:46:46 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2014-11-18 14:46:46 (GMT) |
commit | 0e22d8ae3dcf3f15ae9df9bab55581868f8dbf5a (patch) | |
tree | 0abc8b043398f96c58d8c121f612826785a992be /macosx/tkMacOSXInit.c | |
parent | 47855ace43a7f946266bfc62a9cb919d478c9580 (diff) | |
download | tk-0e22d8ae3dcf3f15ae9df9bab55581868f8dbf5a.zip tk-0e22d8ae3dcf3f15ae9df9bab55581868f8dbf5a.tar.gz tk-0e22d8ae3dcf3f15ae9df9bab55581868f8dbf5a.tar.bz2 |
Remove residual private API calls from Tk/Mac after Mac App Store review flagged them as being present.
Diffstat (limited to 'macosx/tkMacOSXInit.c')
-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 aaeb348..00df93e 100644 --- a/macosx/tkMacOSXInit.c +++ b/macosx/tkMacOSXInit.c @@ -91,11 +91,9 @@ static void keyboardChanged(CFNotificationCenterRef center, void *observer, CFSt - (void) _setupEventLoop { - _running = 1; - if (!_appFlags._hasBeenRun) { - _appFlags._hasBeenRun = YES; - [self finishLaunching]; - } + + /*Remove private API flags here.*/ + [self finishLaunching]; [self setWindowsNeedUpdate:YES]; } |