Apply clang-format

This commit is contained in:
Martchus 2018-08-31 19:54:17 +02:00
parent ff6ddc6976
commit 93d630756a
1 changed files with 2 additions and 2 deletions

View File

@ -134,8 +134,8 @@ void PasswordGeneratorDialog::generateNewPassword()
generate_n(res.begin(), length, getRandomCharacter);
m_ui->passwordLineEdit->setText(QString::fromLatin1(res.data(), length));
} catch (const CryptoException &ex) {
QMessageBox::warning(this, QApplication::applicationName(),
tr("Failed to generate password.\nOpenSSL error: %1").arg(QString::fromLocal8Bit(ex.what())));
QMessageBox::warning(
this, QApplication::applicationName(), tr("Failed to generate password.\nOpenSSL error: %1").arg(QString::fromLocal8Bit(ex.what())));
}
}