Class: Qt::DoubleSpinBox

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

Instance Method Summary collapse

Instance Method Details

#range=(arg) ⇒ Object



932
933
934
935
936
937
938
# File 'lib/Qt/qtruby4.rb', line 932

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