diff options
author | Markus Keller | 2015-11-02 18:07:26 +0000 |
---|---|---|
committer | Markus Keller | 2015-11-02 18:07:26 +0000 |
commit | 7082dd9c9ab28760ad0148f50b8dd66bdb6622f7 (patch) | |
tree | c4eed60ca49fe8cf50949d5ad7db6f5da98e8499 /bundles/org.eclipse.swt/Eclipse SWT AWT | |
parent | 7b95e78e991bc71e9e2b321efd5d25434257ad44 (diff) | |
download | eclipse.platform.swt-7082dd9c9ab28760ad0148f50b8dd66bdb6622f7.tar.gz eclipse.platform.swt-7082dd9c9ab28760ad0148f50b8dd66bdb6622f7.tar.xz eclipse.platform.swt-7082dd9c9ab28760ad0148f50b8dd66bdb6622f7.zip |
Bug 462633: Enable save actions for annotations
Added missing @Override/@Deprecated in cocoa
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT AWT')
-rw-r--r-- | bundles/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java b/bundles/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java index 49eab7f89f..29fad5854f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java +++ b/bundles/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java @@ -374,6 +374,7 @@ public static Shell new_Shell(final Display display, final Canvas parent) { final Shell shell = Shell.cocoa_new (display, handle); final ComponentListener listener = new ComponentAdapter () { + @Override public void componentResized (ComponentEvent e) { display.asyncExec (new Runnable () { public void run () { |