[qet] [2012] Fixed minor formatting issues. |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 2012
Author: xavier
Date: 2013-01-27 16:46:38 +0100 (Sun, 27 Jan 2013)
Log Message:
-----------
Fixed minor formatting issues.
Modified Paths:
--------------
trunk/sources/aboutqet.cpp
Modified: trunk/sources/aboutqet.cpp
===================================================================
--- trunk/sources/aboutqet.cpp 2013-01-27 10:34:30 UTC (rev 2011)
+++ trunk/sources/aboutqet.cpp 2013-01-27 15:46:38 UTC (rev 2012)
@@ -69,11 +69,11 @@
icon -> setPixmap(QET::Icons::QETOxygenLogo.pixmap(48, 48));
// label "QElectroTech"
QLabel *title = new QLabel("<span style=\"font-weight:0;font-size:16pt;\">QElectroTech v" + QET::displayedVersion + "</span>");
- QString sCompilation = "<br>"+ tr("Compilation: ") + __DATE__+ " " + __TIME__;
+ QString compilation_info = "<br />" + tr("Compilation : ") + __DATE__ + " " + __TIME__;
#ifdef __GNUC__
- sCompilation += " - GCC " + QString(__VERSION__);
+ compilation_info += " - GCC " + QString(__VERSION__);
#endif
- title -> setText( title->text() + sCompilation);
+ title -> setText(title->text() + compilation_info);
title -> setTextFormat(Qt::RichText);
QHBoxLayout *hlayout = new QHBoxLayout();