add default charset when not specified

explicitly state the wordcount default value
This commit is contained in:
thez3ro
2018-01-22 13:47:20 +01:00
parent e9612ee9e6
commit e57a2e0fa9
7 changed files with 16 additions and 12 deletions

View File

@@ -133,8 +133,7 @@ int Add::execute(QStringList arguments)
passwordGenerator.setLength(passwordLength.toInt());
}
passwordGenerator.setCharClasses(PasswordGenerator::LowerLetters | PasswordGenerator::UpperLetters |
PasswordGenerator::Numbers);
passwordGenerator.setCharClasses(PasswordGenerator::DefaultCharset);
QString password = passwordGenerator.generatePassword();
entry->setPassword(password);
}