class Qt::Dial

Public Instance Methods

range=(arg) click to toggle source
Calls superclass method
# 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