mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
fix cli commands, translations and codestyle
This commit is contained in:
@@ -61,13 +61,13 @@ public:
|
||||
int getbits() const;
|
||||
|
||||
static const int DefaultLength = 16;
|
||||
static const bool DefaultLower = (DefaultCharset & LowerLetters) != 0;
|
||||
static const bool DefaultUpper = (DefaultCharset & UpperLetters) != 0;
|
||||
static const bool DefaultNumbers = (DefaultCharset & Numbers) != 0;
|
||||
static const bool DefaultSpecial = (DefaultCharset & SpecialCharacters) != 0;
|
||||
static const bool DefaultEASCII = (DefaultCharset & EASCII) != 0;
|
||||
static const bool DefaultLookAlike = (DefaultFlags & ExcludeLookAlike) != 0;
|
||||
static const bool DefaultFromEveryGroup = (DefaultFlags & CharFromEveryGroup) != 0;
|
||||
static constexpr bool DefaultLower = (DefaultCharset & LowerLetters) != 0;
|
||||
static constexpr bool DefaultUpper = (DefaultCharset & UpperLetters) != 0;
|
||||
static constexpr bool DefaultNumbers = (DefaultCharset & Numbers) != 0;
|
||||
static constexpr bool DefaultSpecial = (DefaultCharset & SpecialCharacters) != 0;
|
||||
static constexpr bool DefaultEASCII = (DefaultCharset & EASCII) != 0;
|
||||
static constexpr bool DefaultLookAlike = (DefaultFlags & ExcludeLookAlike) != 0;
|
||||
static constexpr bool DefaultFromEveryGroup = (DefaultFlags & CharFromEveryGroup) != 0;
|
||||
|
||||
private:
|
||||
QVector<PasswordGroup> passwordGroups() const;
|
||||
|
||||
Reference in New Issue
Block a user