diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-04-20 11:07:40 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-04-20 11:07:40 (GMT) |
commit | 6644b8b7ad2134b73c7483ad6426a7acaa7bd2de (patch) | |
tree | ed0653e7854f0f5e0a64e76882b67f5a655ee580 /macosx/tkMacOSXPrivate.h | |
parent | 5fb355e21753cf794cbd95111fc35a964a89b6d3 (diff) | |
download | tk-6644b8b7ad2134b73c7483ad6426a7acaa7bd2de.zip tk-6644b8b7ad2134b73c7483ad6426a7acaa7bd2de.tar.gz tk-6644b8b7ad2134b73c7483ad6426a7acaa7bd2de.tar.bz2 |
Fix [bf0f4808d7]: macOS Aqua : CFLAGS_OPTIMIZE. Builds on MacOSX will now be done with -O2 and without -std=gnu99
Diffstat (limited to 'macosx/tkMacOSXPrivate.h')
-rw-r--r-- | macosx/tkMacOSXPrivate.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/macosx/tkMacOSXPrivate.h b/macosx/tkMacOSXPrivate.h index ead6a71..7ff0d35 100644 --- a/macosx/tkMacOSXPrivate.h +++ b/macosx/tkMacOSXPrivate.h @@ -332,21 +332,6 @@ VISIBILITY_HIDDEN NSAutoreleasePool *_mainPool; NSThread *_backgoundLoop; Bool _tkLiveResizeEnded; - -#ifdef __i386__ - /* The Objective C runtime used on i386 requires this. */ - int _poolLock; - int _macOSVersion; /* 10000 * major + 100*minor */ - Bool _isDrawing; - Bool _needsToDraw; - Bool _isSigned; - Bool _tkLiveResizeEnded; - TkWindow *_tkPointerWindow; - TkWindow *_tkEventTarget; - TkWindow *_tkDragTarget; - unsigned int _tkButtonState; -#endif - } @property int poolLock; @property int macOSVersion; @@ -463,10 +448,6 @@ VISIBILITY_HIDDEN VISIBILITY_HIDDEN @interface TKWindow : NSWindow { -#ifdef __i386__ - /* The Objective C runtime used on i386 requires this. */ - Window _tkWindow; -#endif } @property Window tkWindow; @end @@ -478,20 +459,12 @@ VISIBILITY_HIDDEN @interface TKDrawerWindow : NSWindow { id _i1, _i2; -#ifdef __i386__ - /* The Objective C runtime used on i386 requires this. */ - Window _tkWindow; -#endif } @property Window tkWindow; @end @interface TKPanel : NSPanel { -#ifdef __i386__ - /* The Objective C runtime used on i386 requires this. */ - Window _tkWindow; -#endif } @property Window tkWindow; @end |