summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java
diff options
context:
space:
mode:
authorChristophe Cornu <ccornu>2004-02-20 16:27:04 +0000
committerChristophe Cornu <ccornu>2004-02-20 16:27:04 +0000
commitfcc0c13a871cf20a18999921224b7590b83d7802 (patch)
treeb12a3659f1d7b55beb80e017b8713fcb64156c5b /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java
parent62fa8901ad710270f48c7ee890623da17bf1bfd8 (diff)
downloadeclipse.platform.swt-fcc0c13a871cf20a18999921224b7590b83d7802.tar.gz
eclipse.platform.swt-fcc0c13a871cf20a18999921224b7590b83d7802.tar.xz
eclipse.platform.swt-fcc0c13a871cf20a18999921224b7590b83d7802.zip
37775 - 64 bit /*long*/ markup
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.java10
1 files changed, 5 insertions, 5 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 b9560c9f6b..503023a73e 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
@@ -37,7 +37,7 @@ import org.eclipse.swt.graphics.*;
* </p>
*/
public class Group extends Composite {
- int clientHandle, labelHandle;
+ int /*long*/ clientHandle, labelHandle;
String text = "";
/**
@@ -88,7 +88,7 @@ static int checkStyle (int style) {
return style & ~(SWT.H_SCROLL | SWT.V_SCROLL);
}
-int clientHandle () {
+int /*long*/ clientHandle () {
return clientHandle;
}
@@ -145,7 +145,7 @@ void createHandle(int index) {
OS.gtk_object_sink (labelHandle);
clientHandle = OS.gtk_fixed_new();
if (clientHandle == 0) error (SWT.ERROR_NO_HANDLES);
- int parentHandle = parent.parentingHandle ();
+ int /*long*/ parentHandle = parent.parentingHandle ();
OS.gtk_container_add (parentHandle, fixedHandle);
OS.gtk_container_add (fixedHandle, handle);
OS.gtk_container_add (handle, clientHandle);
@@ -177,7 +177,7 @@ void enableWidget (boolean enabled) {
OS.gtk_widget_set_sensitive (labelHandle, enabled);
}
-int eventHandle () {
+int /*long*/ eventHandle () {
return fixedHandle;
}
@@ -242,7 +242,7 @@ boolean mnemonicMatch (char key) {
return mnemonicMatch (labelHandle, key);
}
-int parentingHandle() {
+int /*long*/ parentingHandle() {
return clientHandle;
}