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();