Class: Qt::DoubleValidator

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

Instance Method Summary collapse

Instance Method Details

#range=(arg) ⇒ Object



942
943
944
945
946
947
948
# File 'lib/Qt/qtruby4.rb', line 942

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