[Fxruby-commits] CVS: FXRuby/examples/textedit prefdialog.rb,1.4,1.4.2.1
Status: Inactive
Brought to you by:
lyle
From: Lyle J. <ly...@us...> - 2002-05-14 14:16:15
|
Update of /cvsroot/fxruby/FXRuby/examples/textedit In directory usw-pr-cvs1:/tmp/cvs-serv23733/examples/textedit Modified Files: Tag: release10 prefdialog.rb 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: prefdialog.rb =================================================================== RCS file: /cvsroot/fxruby/FXRuby/examples/textedit/prefdialog.rb,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** prefdialog.rb 2 Apr 2002 22:27:54 -0000 1.4 --- prefdialog.rb 14 May 2002 14:15:42 -0000 1.4.2.1 *************** *** 166,170 **** (JUSTIFY_RIGHT|FRAME_SUNKEN|FRAME_THICK|LAYOUT_CENTER_Y|LAYOUT_LEFT| LAYOUT_FILL_COLUMN|LAYOUT_FILL_ROW)) ! spinner.setRange(1, 100) # Button 2 --- 166,170 ---- (JUSTIFY_RIGHT|FRAME_SUNKEN|FRAME_THICK|LAYOUT_CENTER_Y|LAYOUT_LEFT| LAYOUT_FILL_COLUMN|LAYOUT_FILL_ROW)) ! spinner.range = 1..100 # Button 2 |