Wrap code for better readability

This commit is contained in:
Simon De Backer
2020-09-07 22:03:40 +02:00
parent 8ee38fab9e
commit 5d92393ee7
202 changed files with 4031 additions and 2153 deletions

View File

@@ -35,7 +35,8 @@ QETRegExpValidator::QETRegExpValidator(const QRegExp &regexp, QObject *parent) :
/**
Destructeur
*/
QETRegExpValidator::~QETRegExpValidator() {
QETRegExpValidator::~QETRegExpValidator()
{
}
/**
@@ -43,7 +44,8 @@ QETRegExpValidator::~QETRegExpValidator() {
@see validationFailed()
Emet le signal validationFailed si la validation echoue
*/
QValidator::State QETRegExpValidator::validate(QString &input, int &pos) const {
QValidator::State QETRegExpValidator::validate(QString &input, int &pos) const
{
QValidator::State result = QRegExpValidator::validate(input, pos);
if (result == QValidator::Invalid) emit(validationFailed());
return(result);