summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorKevin Walzer <kw@codebykevin.com>2014-11-18 14:46:17 (GMT)
committerKevin Walzer <kw@codebykevin.com>2014-11-18 14:46:17 (GMT)
commit9446fb5e8205134345caf84fa9440aa553eb3de6 (patch)
tree9a9adab6de553b235012916e3975ade488769cb8 /macosx
parentee9722cf78769c35f57383613f570b6e797e74bf (diff)
downloadtk-9446fb5e8205134345caf84fa9440aa553eb3de6.zip
tk-9446fb5e8205134345caf84fa9440aa553eb3de6.tar.gz
tk-9446fb5e8205134345caf84fa9440aa553eb3de6.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.c8
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 {