diff -r f2d57e987ba9 -r 4821897a0f10 QTfrontend/ui/dialog/input_password.cpp --- a/QTfrontend/ui/dialog/input_password.cpp Fri Jan 25 12:54:24 2013 +0100 +++ b/QTfrontend/ui/dialog/input_password.cpp Fri Jan 25 13:59:27 2013 +0100 @@ -28,7 +28,7 @@ HWPasswordDialog::HWPasswordDialog(QWidget* parent) : QDialog(parent) { setWindowTitle(tr("Login")); - + QString titleLabelText = "To connect to the server, please log in.\n\nIf you don't have an account on www.hedgewars.org,\njust enter your nickname."; QString nickLabelText = "Nickname:"; QString passLabelText = "Password:"; @@ -38,15 +38,15 @@ QLabel * titleLabel = new QLabel(this); titleLabel->setText(titleLabelText); layout->addWidget(titleLabel, 0, 0); - + QLabel * nickLabel = new QLabel(this); nickLabel->setText(nickLabelText); layout->addWidget(nickLabel, 1, 0); - + leNickname = new QLineEdit(this); leNickname->setEchoMode(QLineEdit::Normal); layout->addWidget(leNickname, 2, 0); - + QLabel * passLabel = new QLabel(this); passLabel->setText(passLabelText); layout->addWidget(passLabel, 3, 0);