summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tk/message.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/tk/lib/tk/message.rb')
-rw-r--r--ext/tk/lib/tk/message.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/tk/lib/tk/message.rb b/ext/tk/lib/tk/message.rb
index b359800142..79121bebb3 100644
--- a/ext/tk/lib/tk/message.rb
+++ b/ext/tk/lib/tk/message.rb
@@ -8,12 +8,12 @@ class TkMessage<TkLabel
TkCommandNames = ['message'.freeze].freeze
WidgetClassName = 'Message'.freeze
WidgetClassNames[WidgetClassName] = self
- def create_self(keys)
- if keys and keys != None
- tk_call_without_enc('message', @path, *hash_kv(keys, true))
- else
- tk_call_without_enc('message', @path)
- end
- end
+ #def create_self(keys)
+ # if keys and keys != None
+ # tk_call_without_enc('message', @path, *hash_kv(keys, true))
+ # else
+ # tk_call_without_enc('message', @path)
+ # end
+ #end
private :create_self
end