Index: sources/view/settings/VSettings.cpp =================================================================== diff -u -r6ccee3fdf50b4717096745fb5b3f5ecc91b9cd1b -r7189d77fab4c43a6ca952105c9f44deba6a96a6a --- sources/view/settings/VSettings.cpp (.../VSettings.cpp) (revision 6ccee3fdf50b4717096745fb5b3f5ecc91b9cd1b) +++ sources/view/settings/VSettings.cpp (.../VSettings.cpp) (revision 7189d77fab4c43a6ca952105c9f44deba6a96a6a) @@ -254,7 +254,7 @@ * \returns true if string pass conforms, false otherwise */ bool View::VSettings::isPasswordValid(const QString &vPassword) { - int minLen = 10 ; // in the SRS the max is required to be 12 which seems incorrect and I didn't set it her. + int minLen = 10 ; // in the SRS the max is required to be 12 which seems incorrect and I didn't set it here. QString pla = "(?=.*[%1])" ; // positive look ahead QString regSntnc = "^%1$" ; // regular expression sentence with has a start/end QString regUpper = "A-Z" ;