summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-10-31 22:47:18 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-10-31 22:47:18 (GMT)
commit6c355243a8617b29d391a9a000cdb11464bd3f60 (patch)
tree8052339bc7534d017947a5c9928655897ff47446 /Swift/QtUI/QtLoginWindow.cpp
parent33707aa8688541a3c2b7e665ce3806badb4d6f21 (diff)
downloadswift-6c355243a8617b29d391a9a000cdb11464bd3f60.zip
swift-6c355243a8617b29d391a9a000cdb11464bd3f60.tar.bz2
Include colons in labels.
Resolves: #605
Diffstat (limited to 'Swift/QtUI/QtLoginWindow.cpp')
-rw-r--r--Swift/QtUI/QtLoginWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/QtLoginWindow.cpp b/Swift/QtUI/QtLoginWindow.cpp
index bcadc3a..3d508cf 100644
--- a/Swift/QtUI/QtLoginWindow.cpp
+++ b/Swift/QtUI/QtLoginWindow.cpp
@@ -64,7 +64,7 @@ QtLoginWindow::QtLoginWindow(UIEventStream* uiEventStream) : QMainWindow() {
layout->addStretch(2);
QLabel* jidLabel = new QLabel(this);
- jidLabel->setText("<font size='-1'>User address</font>");
+ jidLabel->setText("<font size='-1'>User address:</font>");
layout->addWidget(jidLabel);
username_ = new QComboBox(this);
@@ -79,7 +79,7 @@ QtLoginWindow::QtLoginWindow(UIEventStream* uiEventStream) : QMainWindow() {
QLabel* passwordLabel = new QLabel();
- passwordLabel->setText("<font size='-1'>Password</font>");
+ passwordLabel->setText("<font size='-1'>Password:</font>");
layout->addWidget(passwordLabel);