FACT++  1.0
QValidator::State SpinBoxHex::validate ( QString &  txt,
int &   
) const
inlineprotected

Definition at line 17 of file SpinBoxHex.h.

18  {
19  bool ok;
20  txt.toInt(&ok, 16);
21 
22  return ok ? QValidator::Acceptable : QValidator::Invalid;
23  }