summaryrefslogtreecommitdiff
path: root/trunk/ext/tk/lib/tkextlib/bwidget/button.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/ext/tk/lib/tkextlib/bwidget/button.rb')
-rw-r--r--trunk/ext/tk/lib/tkextlib/bwidget/button.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/trunk/ext/tk/lib/tkextlib/bwidget/button.rb b/trunk/ext/tk/lib/tkextlib/bwidget/button.rb
deleted file mode 100644
index 8f3087d098..0000000000
--- a/trunk/ext/tk/lib/tkextlib/bwidget/button.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# tkextlib/bwidget/button.rb
-# by Hidetoshi NAGAI (nagai@ai.kyutech.ac.jp)
-#
-
-require 'tk'
-require 'tk/button'
-require 'tkextlib/bwidget.rb'
-
-module Tk
- module BWidget
- class Button < Tk::Button
- end
- end
-end
-
-class Tk::BWidget::Button
- TkCommandNames = ['Button'.freeze].freeze
- WidgetClassName = 'Button'.freeze
- WidgetClassNames[WidgetClassName] = self
-
- def __strval_optkeys
- super() << 'helptext'
- end
- private :__strval_optkeys
-
- def __tkvariable_optkeys
- super() << 'helpvar'
- end
- private :__tkvariable_optkeys
-end