From cd4c78bcff36537697b0b64cf26c49d471c39ea7 Mon Sep 17 00:00:00 2001 From: xavier Date: Sun, 27 Jan 2013 15:46:38 +0000 Subject: [PATCH] Fixed minor formatting issues. git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2012 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/aboutqet.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sources/aboutqet.cpp b/sources/aboutqet.cpp index 36c9d1b70..1892c7c6b 100644 --- a/sources/aboutqet.cpp +++ b/sources/aboutqet.cpp @@ -69,11 +69,11 @@ QWidget *AboutQET::title() const { icon -> setPixmap(QET::Icons::QETOxygenLogo.pixmap(48, 48)); // label "QElectroTech" QLabel *title = new QLabel("QElectroTech v" + QET::displayedVersion + ""); - QString sCompilation = "
"+ tr("Compilation: ") + __DATE__+ " " + __TIME__; + QString compilation_info = "
" + 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();