diff --git a/src/blackgui/components/logincomponent.cpp b/src/blackgui/components/logincomponent.cpp index 838afb780..c85c9e24f 100644 --- a/src/blackgui/components/logincomponent.cpp +++ b/src/blackgui/components/logincomponent.cpp @@ -273,8 +273,8 @@ namespace BlackGui CVatsimValues values; values.vatsimHomeAirport = this->ui->le_VatsimHomeAirport->text().trimmed().toUpper(); values.vatsimId = this->ui->le_VatsimId->text().trimmed(); - values.vatsimPassword = this->ui->le_VatsimPassword->text().trimmed().toUpper(); - values.vatsimRealName = this->ui->le_VatsimRealName->text().simplified().trimmed().toUpper(); + values.vatsimPassword = this->ui->le_VatsimPassword->text().trimmed(); + values.vatsimRealName = this->ui->le_VatsimRealName->text().simplified().trimmed(); return values; }