summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java
diff options
context:
space:
mode:
authorBilly Biggs <bbiggs>2005-06-15 19:06:23 +0000
committerBilly Biggs <bbiggs>2005-06-15 19:06:23 +0000
commit0a985d66f9bc4154c386b65095808c3aca565dac (patch)
tree7e4b4135535bb125f483b3ee00704f6dd5bd9f4d /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java
parent3dd08469ab460b6917aaa1c8d634ecb846f4d93c (diff)
downloadeclipse.platform.swt-0a985d66f9bc4154c386b65095808c3aca565dac.tar.gz
eclipse.platform.swt-0a985d66f9bc4154c386b65095808c3aca565dac.tar.xz
eclipse.platform.swt-0a985d66f9bc4154c386b65095808c3aca565dac.zip
99518
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java13
1 files changed, 1 insertions, 12 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java
index 008896aa2c..69d91d6187 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java
@@ -157,17 +157,6 @@ int /*long*/ eventHandle () {
return fixedHandle;
}
-public Rectangle getClientArea () {
- checkWidget();
- if ((state & ZERO_SIZED) != 0) {
- return new Rectangle (0, 0, 0, 0);
- }
- forceResize ();
- int width = OS.GTK_WIDGET_WIDTH (clientHandle);
- int height = OS.GTK_WIDGET_HEIGHT (clientHandle);
- return new Rectangle (0, 0, width, height);
-}
-
String getNameText () {
return getText ();
}
@@ -209,7 +198,7 @@ boolean mnemonicMatch (char key) {
}
int /*long*/ parentingHandle() {
- return clientHandle;
+ return fixedHandle;
}
void register () {