From ab69c7e77151a206eb8b3752adcf0cca8d4024f8 Mon Sep 17 00:00:00 2001 From: nagai Date: Fri, 5 Nov 2004 09:15:18 +0000 Subject: * 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: http://svn.ruby-lang.org/repos/ruby/trunk@7212 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/lib/tk/autoload.rb | 2 ++ ext/tk/lib/tk/entry.rb | 2 +- ext/tk/lib/tk/scrollable.rb | 41 +++++++++++++++++++++++++---------------- 3 files changed, 28 insertions(+), 17 deletions(-) (limited to 'ext/tk/lib') diff --git a/ext/tk/lib/tk/autoload.rb b/ext/tk/lib/tk/autoload.rb index bccd6c4c6..3006b559d 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 2a8a9d413..a3c0e51cd 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