Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Ufimtsev2018-04-02 15:03:58 +0000
committerLeo Ufimtsev2018-04-02 15:07:32 +0000
commitdf0f19367d6a5d86c149931bcaaff8c64002f986 (patch)
tree8bae6f4b6da528119d7ebaea9c713e1fcde08b80 /bundles/org.eclipse.swt/Eclipse SWT PI
parent6509033affd4772e7b337e8fb51b322edb474851 (diff)
downloadeclipse.platform.swt-df0f19367d6a5d86c149931bcaaff8c64002f986.tar.gz
eclipse.platform.swt-df0f19367d6a5d86c149931bcaaff8c64002f986.tar.xz
eclipse.platform.swt-df0f19367d6a5d86c149931bcaaff8c64002f986.zip
Revert "Bug 531048 [GTK3] Large problems drawing ownerdraw tables (fix)"
This reverts commit 0854396f0ab183b36576d7b4be3f60d14cf885d8. Reverting commit until I have time to investigate this. Atm will look into a webkit issue first.
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/GTK.java12
1 files changed, 0 insertions, 12 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 78ba8d3a9e..ae31f7be36 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
@@ -7799,13 +7799,8 @@ public class GTK extends OS {
lock.unlock();
}
}
-
/** @param column cast=(GtkTreeViewColumn *) */
public static final native boolean _gtk_tree_view_column_get_visible(long /*int*/ column);
- /**
- * (!) SWT: This method should not be called directly.
- * Instead use Control.gtk_tree_view_column_get_visible (...)
- */
public static final boolean gtk_tree_view_column_get_visible(long /*int*/ column) {
lock.lock();
try {
@@ -7814,7 +7809,6 @@ public class GTK extends OS {
lock.unlock();
}
}
-
/** @param column cast=(GtkTreeViewColumn *) */
public static final native int _gtk_tree_view_column_get_width(long /*int*/ column);
public static final int gtk_tree_view_column_get_width(long /*int*/ column) {
@@ -7992,13 +7986,8 @@ public class GTK extends OS {
lock.unlock();
}
}
-
/** @param tree_column cast=(GtkTreeViewColumn *) */
public static final native void _gtk_tree_view_column_set_visible (long /*int*/ tree_column, boolean visible);
- /**
- * (!) SWT: This method should not be called directly.
- * Instead use Control.gtk_tree_view_column_set_visible (...)
- */
public static final void gtk_tree_view_column_set_visible (long /*int*/ tree_column, boolean visible) {
lock.lock();
try {
@@ -8008,7 +7997,6 @@ public class GTK extends OS {
}
}
/**
-
* @param tree_column cast=(GtkTreeViewColumn *)
* @param widget cast=(GtkWidget *)
*/

Back to the top