From: Lyle J. <ly...@us...> - 2002-05-14 14:16:06
|
Update of /cvsroot/fxruby/FXRuby/ext/fox/include In directory usw-pr-cvs1:/tmp/cvs-serv23733/ext/fox/include Modified Files: Tag: release10 FXRuby.h Log Message: Modified the range and range= methods for FXDial, FXSlider and FXSpinner to work with Ruby Range objects instead of (lo, hi) Fixnum pairs. Index: FXRuby.h =================================================================== RCS file: /cvsroot/fxruby/FXRuby/ext/fox/include/FXRuby.h,v retrieving revision 1.21.2.3 retrieving revision 1.21.2.4 diff -C2 -d -r1.21.2.3 -r1.21.2.4 *** FXRuby.h 8 May 2002 22:37:46 -0000 1.21.2.3 --- FXRuby.h 14 May 2002 14:16:03 -0000 1.21.2.4 *************** *** 247,250 **** --- 247,253 ---- } + // Returns the beginning and ending values (inclusive) for a Range object + void FXRbRange2LoHi(VALUE range,FXint& lo,FXint& hi); + // Call function with "void" return value void FXRbCallVoidMethod(FXObject* recv, |