diff options
author | Anatoly Spektor <aspektor@redhat.com> | 2012-09-19 14:52:25 -0400 |
---|---|---|
committer | Anatoly Spektor <aspektor@redhat.com> | 2012-09-19 14:52:25 -0400 |
commit | b4cb6fedd5e033c160eed2842a6ba8b09aa3352c (patch) | |
tree | 6af422feb9ad02a01cb59c89949a8d056a390853 | |
parent | d6fae686a291ace2c8c34d5bff428c63be7100c1 (diff) | |
parent | a754695634bbf4177c903eb76191590677bc9067 (diff) | |
download | eclipse.platform.swt-b4cb6fedd5e033c160eed2842a6ba8b09aa3352c.tar.gz eclipse.platform.swt-b4cb6fedd5e033c160eed2842a6ba8b09aa3352c.tar.xz eclipse.platform.swt-b4cb6fedd5e033c160eed2842a6ba8b09aa3352c.zip |
Merge branch 'master' of http://git.eclipse.org/gitroot/platform/eclipse.platform.swt.git
-rw-r--r-- | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java index 89ae3596b4..afe1444725 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java @@ -1794,7 +1794,7 @@ void gtk_widget_set_mapped (int /*long*/ widget, boolean mapped) { } void gtk_widget_set_visible (int /*long*/ widget, boolean visible) { - if (OS.GTK_VERSION >= OS.VERSION (2, 18, 0)) { + if (OS.GTK_VERSION >= OS.VERSION (3, 0, 0)) { OS.gtk_widget_set_visible (widget,visible); } else { if (visible) { |