From 27425a52ba53d99551b2fd0d8dae672f3f423e64 Mon Sep 17 00:00:00 2001 From: nagai Date: Fri, 5 Nov 2004 09:15:18 +0000 Subject: [PATCH] * ext/tk/lib/tk/scrollable.rb: divide Scrollable module into X_Scrollable and Y_Scrollable * ext/tk/lib/tk/entry.rb: include X_Scrollable instead of Scrollable * ext/tk/lib/tk/autoload.rb: define autoload for X_Scrollable and Y_Scrollable git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7212 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 10 +++++++++ ext/tk/lib/tk/autoload.rb | 2 ++ ext/tk/lib/tk/entry.rb | 2 +- ext/tk/lib/tk/scrollable.rb | 41 ++++++++++++++++++++++--------------- 4 files changed, 38 insertions(+), 17 deletions(-) diff --git a/ChangeLog b/ChangeLog index 02b3d3047d..3309b979ce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +Fri Nov 5 18:12:42 2004 Hidetoshi NAGAI + + * ext/tk/lib/tk/scrollable.rb: divide Scrollable module into + X_Scrollable and Y_Scrollable + + * ext/tk/lib/tk/entry.rb: include X_Scrollable instead of Scrollable + + * ext/tk/lib/tk/autoload.rb: define autoload for X_Scrollable and + Y_Scrollable + Fri Nov 5 16:05:32 2004 Hidetoshi NAGAI * ext/tk/lib/tk.rb: TkComm._at() supprts both of "@x,y" and "@x" diff --git a/ext/tk/lib/tk/autoload.rb b/ext/tk/lib/tk/autoload.rb index bccd6c4c61..3006b559d6 100644 --- a/ext/tk/lib/tk/autoload.rb +++ b/ext/tk/lib/tk/autoload.rb @@ -173,6 +173,8 @@ autoload :TkXIM, 'tk/xim' module Tk autoload :Clock, 'tk/clock' autoload :OptionObj, 'tk/optionobj' + autoload :X_Scrollable, 'tk/scrollable' + autoload :Y_Scrollable, 'tk/scrollable' autoload :Scrollable, 'tk/scrollable' autoload :Wm, 'tk/wm' diff --git a/ext/tk/lib/tk/entry.rb b/ext/tk/lib/tk/entry.rb index 2a8a9d413c..a3c0e51cdd 100644 --- a/ext/tk/lib/tk/entry.rb +++ b/ext/tk/lib/tk/entry.rb @@ -9,7 +9,7 @@ require 'tk/scrollable' require 'tk/validation' class TkEntry