summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Heidrich <fheidric>2006-02-10 21:25:44 +0000
committerFelipe Heidrich <fheidric>2006-02-10 21:25:44 +0000
commita294dd027fdb87aa9b97db833cf3cceab0090d42 (patch)
tree6f9773be613e522cb88e5d40c05e5440c7cb5399
parented885b96e85c5953515329ec1d3fb59dbff590e9 (diff)
downloadeclipse.platform.swt-a294dd027fdb87aa9b97db833cf3cceab0090d42.tar.gz
eclipse.platform.swt-a294dd027fdb87aa9b97db833cf3cceab0090d42.tar.xz
eclipse.platform.swt-a294dd027fdb87aa9b97db833cf3cceab0090d42.zip
*** empty log message ***
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandItem.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandItem.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandItem.java
index 634519863a..a53745112f 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandItem.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandItem.java
@@ -346,7 +346,7 @@ void setBounds (int x, int y, int width, int height, boolean move, boolean size)
width = Math.max (0, width - BORDER * 2);
height = Math.max (0, height - BORDER);
}
- OS.SetWindowPos (hwnd, 0, x, y + ExpandBar.HEADER_HEIGHT, width, height, flags);
+ SetWindowPos (hwnd, 0, x, y + ExpandBar.HEADER_HEIGHT, width, height, flags);
}
}
@@ -380,7 +380,7 @@ public void setControl (Control control) {
width = Math.max (0, width - BORDER * 2);
height = Math.max (0, height - BORDER);
}
- OS.SetWindowPos (hwnd, 0, x, y + ExpandBar.HEADER_HEIGHT, width, height, flags);
+ SetWindowPos (hwnd, 0, x, y + ExpandBar.HEADER_HEIGHT, width, height, flags);
}
}