Method: Tk::Frame.bind_append

Defined in:
lib/tk/frame.rb

.bind_append(*args, &b) ⇒ Object



108
109
110
111
112
113
114
# File 'lib/tk/frame.rb', line 108

def self.bind_append(*args, &b)
  if self == WidgetClassNames[WidgetClassName] || self.name == ''
    super(*args, &b)
  else
    TkDatabaseClass.new(self.name).bind_append(*args, &b)
  end
end