From 7c8383f51b93f7d1d47653a4cf70e9ab97bfb48a Mon Sep 17 00:00:00 2001 From: Silenio Quarti Date: Wed, 30 Jan 2013 16:53:02 -0500 Subject: Bug 399563 - Splash screen is huge on aix.ppc and linux.ppc --- .../org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java index 66d6cd1595..4a349ac379 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java @@ -1902,7 +1902,7 @@ void setInitialBounds () { int width, height; if ((state & FOREIGN_HANDLE) != 0) { GtkAllocation allocation = new GtkAllocation (); - OS.gtk_widget_get_allocation (shellHandle, allocation); + gtk_widget_get_allocation (shellHandle, allocation); width = allocation.width; height = allocation.height; } else { -- cgit