citra_qt: fix clang-format

This commit is contained in:
zhupengfei 2018-05-01 11:26:57 +08:00
parent 784c41bf34
commit b33f7901b6
No known key found for this signature in database
GPG key ID: 85B82A3E62174206

View file

@ -70,9 +70,8 @@ Lobby::Lobby(QWidget* parent, QStandardItemModel* list,
QString Lobby::PasswordPrompt() {
bool ok;
const QString text =
QInputDialog::getText(this, tr("Password Required to Join"), tr("Password:"),
QLineEdit::Password, "", &ok);
const QString text = QInputDialog::getText(this, tr("Password Required to Join"),
tr("Password:"), QLineEdit::Password, "", &ok);
return ok ? text : QString();
}