Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmi Shanmugam2017-09-29 06:37:44 +0000
committerLakshmi Shanmugam2017-09-29 07:21:13 +0000
commit67a65faf4997cf76d70c25de585e4f2fe1a10e9e (patch)
tree2faa4e8d8cb847eb0dfc57fad354b4eadfe6f135 /bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java
parentef52d7ec57eab4ec68f49e66ffbf0698421fdb3c (diff)
downloadeclipse.platform.swt-67a65faf4997cf76d70c25de585e4f2fe1a10e9e.tar.gz
eclipse.platform.swt-67a65faf4997cf76d70c25de585e4f2fe1a10e9e.tar.xz
eclipse.platform.swt-67a65faf4997cf76d70c25de585e4f2fe1a10e9e.zip
Bug 521849: Fix deprecated warnings in Mac native build
NSWindowList is deprecated since 10.6. Remove it as it is no longer used in the code. Change-Id: I8c095df071d22aeb473a1ea3b7db1f0f03898a11
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java
index dad5f46630..59a5bf3c93 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java
@@ -3303,11 +3303,6 @@ public static final native long /*int*/ NSNumberOfColorComponents(long /*int*/ c
*/
public static final native void NSRectFillUsingOperation(NSRect aRect, long /*int*/ op);
/**
- * @param size cast=(NSInteger)
- * @param list cast=(NSInteger*)
- */
-public static final native void NSWindowList(long /*int*/ size, long[] /*int[]*/ list);
-/**
* @param alloc cast=(CFAllocatorRef)
* @param str cast=(CFStringRef)
* @param attributes cast=(CFDictionaryRef)

Back to the top