Update of /cvsroot/fxruby/FXRuby/lib/fox
In directory usw-pr-cvs1:/tmp/cvs-serv13212/lib/fox
Modified Files:
Tag: release10
aliases.rb
Log Message:
Replaced inlined %name directives in SWIG interface files with the
newer %rename directives; a little tweaking of FXDict as well.
Index: aliases.rb
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/lib/fox/aliases.rb,v
retrieving revision 1.24.2.6
retrieving revision 1.24.2.7
diff -C2 -d -r1.24.2.6 -r1.24.2.7
*** aliases.rb 24 May 2002 16:24:28 -0000 1.24.2.6
--- aliases.rb 24 May 2002 22:20:57 -0000 1.24.2.7
***************
*** 255,266 ****
end
class FX_Dict
! alias length no
! alias size no
! # alias delete remove
! alias has_key? has_key
! alias include? has_key
! alias key? has_key
! alias member? has_key
! alias empty? empty
end
class FX_DirBox
--- 255,262 ----
end
class FX_Dict
! alias size length
! alias include? has_key?
! alias key? has_key?
! alias member? has_key?
end
class FX_DirBox
|