Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/GTK.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/GTK.java77
1 files changed, 0 insertions, 77 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/GTK.java b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/GTK.java
index 073c1f46e6..a7110fc246 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/GTK.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/GTK.java
@@ -3083,20 +3083,6 @@ public class GTK extends OS {
}
/**
* @method flags=dynamic
- * @param adjustment cast=(GtkAdjustment *)
- */
- public static final native long /*int*/ _gtk_hscale_new(long /*int*/ adjustment);
- /** [GTK2/GTK3; 3.2 deprecated] */
- public static final long /*int*/ gtk_hscale_new(long /*int*/ adjustment) {
- lock.lock();
- try {
- return _gtk_hscale_new(adjustment);
- } finally {
- lock.unlock();
- }
- }
- /**
- * @method flags=dynamic
* @param orientation cast=(GtkOrientation)
* @param adjustment cast=(GtkAdjustment *)
*/
@@ -3110,20 +3096,6 @@ public class GTK extends OS {
}
}
/**
- * @method flags=dynamic
- * @param adjustment cast=(GtkAdjustment *)
- */
- public static final native long /*int*/ _gtk_hscrollbar_new(long /*int*/ adjustment);
- /** [GTK2/GTK3; 3.2 deprecated] */
- public static final long /*int*/ gtk_hscrollbar_new(long /*int*/ adjustment) {
- lock.lock();
- try {
- return _gtk_hscrollbar_new(adjustment);
- } finally {
- lock.unlock();
- }
- }
- /**
* @method flags=dynamic
* @param orientation cast=(GtkOrientation)
* @param adjustment cast=(GtkAdjustment *)
@@ -3137,16 +3109,6 @@ public class GTK extends OS {
lock.unlock();
}
}
- /** @method flags=dynamic */
- public static final native long /*int*/ _gtk_hseparator_new();
- public static final long /*int*/ gtk_hseparator_new() {
- lock.lock();
- try {
- return _gtk_hseparator_new();
- } finally {
- lock.unlock();
- }
- }
/**
* @method flags=dynamic
* @param orientation cast=(GtkOrientation)
@@ -7989,45 +7951,6 @@ public class GTK extends OS {
}
}
/**
- * @method flags=dynamic
- * @param adjustment cast=(GtkAdjustment *)
- */
- public static final native long /*int*/ _gtk_vscale_new(long /*int*/ adjustment);
- /** [GTK2/GTK3; 3.2 deprecated] */
- public static final long /*int*/ gtk_vscale_new(long /*int*/ adjustment) {
- lock.lock();
- try {
- return _gtk_vscale_new(adjustment);
- } finally {
- lock.unlock();
- }
- }
- /**
- * @method flags=dynamic
- * @param adjustment cast=(GtkAdjustment *)
- */
- public static final native long /*int*/ _gtk_vscrollbar_new(long /*int*/ adjustment);
- /** [GTK2/GTK3; 3.2 deprecated] */
- public static final long /*int*/ gtk_vscrollbar_new(long /*int*/ adjustment) {
- lock.lock();
- try {
- return _gtk_vscrollbar_new(adjustment);
- } finally {
- lock.unlock();
- }
- }
- /** @method flags=dynamic */
- public static final native long /*int*/ _gtk_vseparator_new();
- /** [GTK2/GTK3; 3.2 deprecated] */
- public static final long /*int*/ gtk_vseparator_new() {
- lock.lock();
- try {
- return _gtk_vseparator_new();
- } finally {
- lock.unlock();
- }
- }
- /**
* @param widget cast=(GtkWidget *)
* @param accel_signal cast=(const gchar *)
* @param accel_group cast=(GtkAccelGroup *)

Back to the top