Class: Qt::Dial

Inherits:
Base show all
Defined in:
lib/Qt/qtruby4.rb

Instance Method Summary collapse

Instance Method Details

#range=(arg) ⇒ Object



906
907
908
909
910
911
912
# File 'lib/Qt/qtruby4.rb', line 906

def range=(arg)
  if arg.kind_of? Range
    return super(arg.begin, arg.exclude_end?  ? arg.end - 1 : arg.end)
  else
    return super(arg)
  end
end