diff --git a/src/_macosx.m b/src/_macosx.m index e0e6f4a49ef5..7042f6da35cc 100755 --- a/src/_macosx.m +++ b/src/_macosx.m @@ -198,7 +198,6 @@ - (BOOL)closeButtonPressed; @interface View : NSView { PyObject* canvas; NSRect rubberband; - NSTrackingRectTag tracking; @public double device_scale; } - (void)dealloc; @@ -210,7 +209,6 @@ - (View*)initWithFrame:(NSRect)rect; - (void)setCanvas: (PyObject*)newCanvas; - (void)windowWillClose:(NSNotification*)notification; - (BOOL)windowShouldClose:(NSNotification*)notification; -- (BOOL)isFlipped; - (void)mouseEntered:(NSEvent*)event; - (void)mouseExited:(NSEvent*)event; - (void)mouseDown:(NSEvent*)event; @@ -1245,11 +1243,6 @@ - (void)close @end @implementation View -- (BOOL)isFlipped -{ - return NO; -} - - (View*)initWithFrame:(NSRect)rect { self = [super initWithFrame: rect];