SVN commit 441796 by ruurd: Don't check for zero length M +1 -1 admincodevalidator.cpp --- trunk/playground/office/pekunia/pekunia/admincodevalidator.cpp #441795:441796 @@ -40,7 +40,7 @@ { QValidator::State result = QValidator::Acceptable; // Assume OK input = input.upper(); - if ((input.length() == 0) || (input.length() > 10)) + if (input.length() > 10) { result = QValidator::Invalid; }