Update of /cvsroot/fxruby/FXRuby/lib/fox
In directory usw-pr-cvs1:/tmp/cvs-serv13377/lib/fox
Modified Files:
aliases.rb overloads.rb
Log Message:
Added typemaps and supporting code to get FXDC#setDashes working properly.
Fixed other bugs in the FXDC test case.
Index: aliases.rb
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/lib/fox/aliases.rb,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** aliases.rb 3 Apr 2002 17:32:58 -0000 1.23
--- aliases.rb 3 Apr 2002 21:40:57 -0000 1.24
***************
*** 195,199 ****
alias dashPattern getDashPattern
alias dashOffset getDashOffset
- alias dashLength getDashLength
alias lineWidth getLineWidth
alias lineWidth= setLineWidth
--- 195,198 ----
Index: overloads.rb
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/lib/fox/overloads.rb,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** overloads.rb 3 Apr 2002 17:32:20 -0000 1.6
--- overloads.rb 3 Apr 2002 21:40:57 -0000 1.7
***************
*** 26,32 ****
def setStipple(*args)
if args[0].kind_of? FXBitmap
! setStippleFromBitmap(args[0], args[1], args[2])
else
! setStippleFromPattern(args[0], args[1], args[2])
end
end
--- 26,32 ----
def setStipple(*args)
if args[0].kind_of? FXBitmap
! setStippleFromBitmap(*args)
else
! setStippleFromPattern(*args)
end
end
|