[Fxruby-commits] CVS: FXRuby/examples/textedit prefdialog.rb,1.4,1.5 textedit.rb,1.11,1.12
Status: Inactive
Brought to you by:
lyle
From: Lyle J. <ly...@us...> - 2002-07-11 13:33:30
|
Update of /cvsroot/fxruby/FXRuby/examples/textedit In directory usw-pr-cvs1:/tmp/cvs-serv26972/examples/textedit Modified Files: prefdialog.rb textedit.rb Log Message: Merged changes from the release10 branch back onto the main trunk. Index: prefdialog.rb =================================================================== RCS file: /cvsroot/fxruby/FXRuby/examples/textedit/prefdialog.rb,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** prefdialog.rb 2 Apr 2002 22:27:54 -0000 1.4 --- prefdialog.rb 11 Jul 2002 13:32:57 -0000 1.5 *************** *** 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 Index: textedit.rb =================================================================== RCS file: /cvsroot/fxruby/FXRuby/examples/textedit/textedit.rb,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** textedit.rb 2 Apr 2002 22:27:54 -0000 1.11 --- textedit.rb 11 Jul 2002 13:32:57 -0000 1.12 *************** *** 1736,1740 **** # Make application application = FXApp.new("TextEdit", "FoxTest") ! application.disableThreads # Open display --- 1736,1740 ---- # Make application application = FXApp.new("TextEdit", "FoxTest") ! application.threadsEnabled = false # Open display |