Class | TkWarningObj |
In: |
tk/lib/tk/dialog.rb
|
Parent: | TkDialogObj |
# File tk/lib/tk/dialog.rb, line 280 def initialize(parent = nil, mes = nil) if !mes if parent.kind_of?(TkWindow) mes = "" else mes = parent.to_s parent = nil end end super(parent, :message=>mes) end