mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-21 20:49:00 -04:00
fix camel case
This commit is contained in:
parent
19d1fa8e7d
commit
0c755846fe
3 changed files with 7 additions and 7 deletions
|
@ -29,7 +29,7 @@ PassphraseGenerator::PassphraseGenerator()
|
|||
, m_separator(' ')
|
||||
{
|
||||
const QString path = filePath()->dataPath("wordlists/eff_large.wordlist");
|
||||
setWordlist(path);
|
||||
setWordList(path);
|
||||
}
|
||||
|
||||
double PassphraseGenerator::calculateEntropy(QString passphrase)
|
||||
|
@ -54,7 +54,7 @@ void PassphraseGenerator::setWordCount(int wordCount)
|
|||
|
||||
}
|
||||
|
||||
void PassphraseGenerator::setWordlist(QString path)
|
||||
void PassphraseGenerator::setWordList(QString path)
|
||||
{
|
||||
m_wordlist.clear();
|
||||
|
||||
|
@ -75,7 +75,7 @@ void PassphraseGenerator::setWordlist(QString path)
|
|||
}
|
||||
}
|
||||
|
||||
void PassphraseGenerator::setWordseparator(QString separator) {
|
||||
void PassphraseGenerator::setWordSeparator(QString separator) {
|
||||
m_separator = separator;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue