diff lwlib/xlwgauge.h @ 5118:e0db3c197671 ben-lisp-object

merge up to latest default branch, doesn't compile yet
author Ben Wing <ben@xemacs.org>
date Sat, 26 Dec 2009 21:18:49 -0600
parents 16b17fd1dc93
children 308d34e9f07d
line wrap: on
line diff
--- a/lwlib/xlwgauge.h	Sat Dec 26 00:20:27 2009 -0600
+++ b/lwlib/xlwgauge.h	Sat Dec 26 21:18:49 2009 -0600
@@ -48,9 +48,9 @@
 
  Name			Class		RepType		Default Value
  ----			-----		-------		-------------
- value			Value		Cardinal	0
- minValue		MinValue	Cardinal	0
- maxValue		MaxValue	Cardinal	100
+ value			Value		Int	0
+ minValue		Int	Cardinal	0
+ maxValue		Int	Cardinal	100
  ntics			NTics		Cardinal	0	+
  nlabels		NLabels		Cardinal	0	++
  labels			Labels		String *	NULL	+++
@@ -100,7 +100,7 @@
 		XtPointer client ;
 		XtPointer rval ;
 	{
-	  *(Cardinal *)rval = value ;
+	  *(int *)rval = value ;
 	}
 
 */
@@ -169,11 +169,11 @@
 extern	void	XawGaugeSetValue(
 #if NeedFunctionPrototypes
 	Widget	gauge,
-	Cardinal value
+	int value
 #endif
 );
 
-extern	Cardinal XawGaugeGetValue(
+extern	int XawGaugeGetValue(
 #if NeedFunctionPrototypes
 	Widget	gauge
 #endif