diff options
Diffstat (limited to 'ext/tk/lib/tkentry.rb')
-rw-r--r-- | ext/tk/lib/tkentry.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/tk/lib/tkentry.rb b/ext/tk/lib/tkentry.rb index 20cca6bec7..62b6535ef3 100644 --- a/ext/tk/lib/tkentry.rb +++ b/ext/tk/lib/tkentry.rb @@ -8,6 +8,7 @@ require 'tk.rb' class TkEntry<TkLabel include Scrollable + TkCommandNames = ['entry'.freeze].freeze WidgetClassName = 'Entry'.freeze WidgetClassNames[WidgetClassName] = self @@ -221,6 +222,7 @@ class TkEntry<TkLabel end class TkSpinbox<TkEntry + TkCommandNames = ['spinbox'.freeze].freeze WidgetClassName = 'Spinbox'.freeze WidgetClassNames[WidgetClassName] = self |