1
0
Fork 0

GUI: fixed warning in HexValidator

This commit is contained in:
mrexodia 2016-06-03 10:53:08 +02:00
parent b6425a9c40
commit a89c93c425
No known key found for this signature in database
GPG Key ID: D72F9A4FAA0073B4
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ void HexValidator::fixup(QString & input) const
QValidator::State HexValidator::validate(QString & input, int & pos) const
{
Q_UNUSED(pos);
input = input.toUpper();
for(int i = 0; i < input.length(); i++)
{