summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti <silenio_quarti@ca.ibm.com>2013-01-30 16:53:02 -0500
committerSilenio Quarti <silenio_quarti@ca.ibm.com>2013-01-30 16:53:02 -0500
commit7c8383f51b93f7d1d47653a4cf70e9ab97bfb48a (patch)
tree22017fcf4aa2a7da2a5a68ea31eabb4857a0722e
parentffc9f40b7904f00bfd32f38d3b3ec04c8aced62e (diff)
downloadeclipse.platform.swt-7c8383f51b93f7d1d47653a4cf70e9ab97bfb48a.tar.gz
eclipse.platform.swt-7c8383f51b93f7d1d47653a4cf70e9ab97bfb48a.tar.xz
eclipse.platform.swt-7c8383f51b93f7d1d47653a4cf70e9ab97bfb48a.zip
Bug 399563 - Splash screen is huge on aix.ppc and linux.ppc
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java2
1 files changed, 1 insertions, 1 deletions
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 {