# HG changeset patch
# User koda
# Date 1359246050 -3600
# Node ID 250142acef7baf5e52736bd8cc5da8e3a9cf83df
# Parent 828cacaa9b24ba833dff33fea6dcb1358ee9b486
shorten the library label a little bit
diff -r 828cacaa9b24 -r 250142acef7b QTfrontend/ui/widget/about.cpp
--- a/QTfrontend/ui/widget/about.cpp Sun Jan 27 00:44:31 2013 +0100
+++ b/QTfrontend/ui/widget/about.cpp Sun Jan 27 01:20:50 2013 +0100
@@ -87,9 +87,9 @@
QString libinfo = "";
#ifdef __GNUC__
- libinfo.append(QString("Compiler: GCC %1
").arg(__VERSION__));
+ libinfo.append(QString("GCC %1
").arg(__VERSION__));
#else
- libinfo.append(QString("Compiler: Unknown
").arg(__VERSION__));
+ libinfo.append(QString(tr("Unknown Compiler")).arg(__VERSION__) + QString("
"));
#endif
libinfo.append(QString("SDL version: %1.%2.%3
")
@@ -115,7 +115,7 @@
lblLibInfo->setText(libinfo);
lblLibInfo->setWordWrap(true);
lblLibInfo->setMaximumWidth(280);
- leftLayout->addWidget(lblLibInfo, 0, Qt::AlignTop | Qt::AlignHCenter);
+ leftLayout->addWidget(lblLibInfo, 0, Qt::AlignHCenter);
leftLayout->addStretch(1);
setAcceptDrops(true);