fix camel case

This commit is contained in:
thez3ro 2017-03-22 00:04:36 +01:00
parent 19d1fa8e7d
commit 0c755846fe
No known key found for this signature in database
GPG key ID: F628F9E41DD7C073
3 changed files with 7 additions and 7 deletions

View file

@ -363,9 +363,9 @@ void PasswordGeneratorWidget::updateGenerator()
m_dicewareGenerator->setWordCount(m_ui->spinBoxWordCount->value());
if (!m_ui->comboBoxWordList->currentText().isEmpty()) {
QString path = filePath()->dataPath("wordlists/" + m_ui->comboBoxWordList->currentText());
m_dicewareGenerator->setWordlist(path);
m_dicewareGenerator->setWordList(path);
}
m_dicewareGenerator->setWordseparator(m_ui->editWordSeparator->text());
m_dicewareGenerator->setWordSeparator(m_ui->editWordSeparator->text());
if (m_dicewareGenerator->isValid()) {
m_ui->buttonGenerate->setEnabled(true);