diff --git a/ChangeLog b/ChangeLog index d19f99270f..63416dc5d7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +Fri Jan 26 12:03:39 2007 Hidetoshi NAGAI + + * ext/tk/lib/tk.rb (TkConfigMethod#__confinfo_cmd, + __conv_keyonly_optkeys): make them private [ruby-dev:30074]. + + * ext/tk/lib/tk/txtwin_abst.rb: fix typo [ruby-dev:30073]. + + * ext/tk/lib/tk/canvas.rb (TkCanvas#scan_dragto): lack of an argument. + + * ext/tk/lib/tk/canvas.rb: clarify the including module name + [ruby-dev:30080]. + + * ext/tk/lib/tk/scrollable.rb: change primary name of modules + [ruby-dev:30080]. + Fri Jan 26 07:48:57 2007 Yukihiro Matsumoto * enumerator.c (enumerator_init_copy): need to copy internal diff --git a/ext/tk/ChangeLog.tkextlib b/ext/tk/ChangeLog.tkextlib index 40977b4776..33bec9fb6e 100644 --- a/ext/tk/ChangeLog.tkextlib +++ b/ext/tk/ChangeLog.tkextlib @@ -1,3 +1,14 @@ +2007-01-26 Hidetoshi NAGAI + * ext/tk/lib/tkextlib/iwidgets/checkbox.rb: wrong number of arguments + [ruby-Bugs-7776]. + + * ext/tk/lib/tkextlib/iwidgets/radiobox.rb: ditto. + + * ext/tk/lib/tkextlib/blt/tile/checkbutton.rb: change primary name + of class [ruby-dev:30080]. + + * ext/tk/lib/tkextlib/blt/tile/radiobutton.rb: ditto. + 2006-11-07 Hidetoshi NAGAI * lib/tkextlib/tile/treeview.rb : minor bug fix. diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index 071d60237c..0a83cb301a 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -2829,7 +2829,7 @@ module TkConfigMethod def __confinfo_cmd __config_cmd end - private :__config_cmd + private :__configinfo_cmd def __configinfo_struct {:key=>0, :alias=>1, :db_name=>1, :db_class=>2, @@ -2926,6 +2926,7 @@ module TkConfigMethod } keys2 end + private :__conv_keyonly_optkeys def config_hash_kv(keys, enc_mode = nil, conf = nil) hash_kv(__conv_keyonly_opts(keys), enc_mode, conf) @@ -4597,7 +4598,7 @@ end #Tk.freeze module Tk - RELEASE_DATE = '2006-11-07'.freeze + RELEASE_DATE = '2007-01-26'.freeze autoload :AUTO_PATH, 'tk/variable' autoload :TCL_PACKAGE_PATH, 'tk/variable' diff --git a/ext/tk/lib/tk/canvas.rb b/ext/tk/lib/tk/canvas.rb index 02b4a8cb20..c30fd79bb9 100644 --- a/ext/tk/lib/tk/canvas.rb +++ b/ext/tk/lib/tk/canvas.rb @@ -42,7 +42,7 @@ end class TkCanvas