summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tk/labelframe.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/tk/lib/tk/labelframe.rb')
-rw-r--r--ext/tk/lib/tk/labelframe.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/tk/lib/tk/labelframe.rb b/ext/tk/lib/tk/labelframe.rb
index fa658848c8..fd16d3419d 100644
--- a/ext/tk/lib/tk/labelframe.rb
+++ b/ext/tk/lib/tk/labelframe.rb
@@ -8,13 +8,13 @@ class TkLabelFrame<TkFrame
TkCommandNames = ['labelframe'.freeze].freeze
WidgetClassName = 'Labelframe'.freeze
WidgetClassNames[WidgetClassName] = self
- def create_self(keys)
- if keys and keys != None
- tk_call_without_enc('labelframe', @path, *hash_kv(keys, true))
- else
- tk_call_without_enc('labelframe', @path)
- end
- end
- private :create_self
+ #def create_self(keys)
+ # if keys and keys != None
+ # tk_call_without_enc('labelframe', @path, *hash_kv(keys, true))
+ # else
+ # tk_call_without_enc('labelframe', @path)
+ # end
+ #end
+ #private :create_self
end
TkLabelframe = TkLabelFrame