Skip to content

Commit c787298

Browse files
committed
Changed login text
1 parent 01284fb commit c787298

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/ui/LoginPanel.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
#include <QStyleOption>
99
#include <QPainter>
1010

11+
#define TITLE_STR "Facade"
12+
#define SUBTIT_STR "A desktop client for myGCC"
13+
1114
LoginPanel::LoginPanel(int min_width, int min_height, Login *loginObj) :
1215
min_width(min_width), min_height(min_height), loginObj(loginObj),
1316
bgPrimary(Color::login_bg_primary().color(QPalette::Background)),
@@ -16,8 +19,8 @@ LoginPanel::LoginPanel(int min_width, int min_height, Login *loginObj) :
1619
startupLayout = new QVBoxLayout;
1720
usernameText = new QLineEdit;
1821
passwordText = new QLineEdit;
19-
subtitleLabel = new QLabel("putting a bag over myGCC's ugly head");
20-
titleLabel = new QLabel("Facade");
22+
subtitleLabel = new QLabel(SUBTIT_STR);
23+
titleLabel = new QLabel(TITLE_STR);
2124
loginButton = new LoginButton(new QString("Login"));
2225
setBackgroundColor(bgPrimary);
2326
bgState = PRIMARY;

0 commit comments

Comments
 (0)