From 05f15c7988acd7c9be883edf695905d97e04ffb9 Mon Sep 17 00:00:00 2001 From: woogerboy21 Date: Tue, 1 Jul 2014 10:28:15 -0400 Subject: [PATCH] Revert "friendly-invalid-password-prompt" This reverts commit 9296c0717386a11921a178645be2b6a381aecd06. --- cockatrice/src/window_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cockatrice/src/window_main.cpp b/cockatrice/src/window_main.cpp index 5c97b6070..f5dc26843 100644 --- a/cockatrice/src/window_main.cpp +++ b/cockatrice/src/window_main.cpp @@ -241,7 +241,7 @@ void MainWindow::loginError(Response::ResponseCode r, QString reasonStr, quint32 { switch (r) { case Response::RespWrongPassword: - QMessageBox::critical(this, tr("Error"), tr("Incorrect password, please try again.")); + QMessageBox::critical(this, tr("Error"), tr("Invalid login data.")); break; case Response::RespWouldOverwriteOldSession: QMessageBox::critical(this, tr("Error"), tr("There is already an active session using this user name.\nPlease close that session first and re-login."));