summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
index 9c606fd4d7..cdc8ba5b94 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
@@ -2907,10 +2907,6 @@ void initClasses () {
OS.class_addMethod(cls, OS.sel_systemSettingsChanged_, proc3, "@:@");
OS.class_addMethod(cls, OS.sel_windowDidMiniaturize_, proc3, "@:@");
OS.class_addMethod(cls, OS.sel_windowDidDeminiaturize_, proc3, "@:@");
- if (OS.VERSION >= 0x1070) {
- OS.class_addMethod(cls, OS.sel_windowDidEnterFullScreen_, proc3, "@:@");
- OS.class_addMethod(cls, OS.sel_windowDidExitFullScreen_, proc3, "@:@");
- }
OS.objc_registerClassPair(cls);
}
@@ -5689,10 +5685,6 @@ static int /*long*/ windowProc(int /*long*/ id, int /*long*/ sel, int /*long*/ a
widget.windowDidMiniturize(id, sel, arg0);
} else if (sel == OS.sel_windowDidDeminiaturize_) {
widget.windowDidDeminiturize(id, sel, arg0);
- } else if (sel == OS.sel_windowDidEnterFullScreen_) {
- widget.windowDidEnterFullScreen(id, sel, arg0);
- } else if (sel == OS.sel_windowDidExitFullScreen_) {
- widget.windowDidExitFullScreen(id, sel, arg0);
} else if (sel == OS.sel_touchesBeganWithEvent_) {
widget.touchesBeganWithEvent(id, sel, arg0);
} else if (sel == OS.sel_touchesMovedWithEvent_) {