Hello,

I have a form with QLineEdit that it has a QDoubleValidator:

Qt Code:
  1. ui.lineEdit->setValidator(new QDoubleValidator(-999.99, 999.99, 2, ui.lineEdit));
To copy to clipboard, switch view to plain text mode 

Instead, QLineEdit accept values up to 1000, for example 55598989.

is there any bug in QDoubleValidator in Qt 4.5 or perhpas I do not make it correctly???

Best regards