From 1edcbe0c249efae8c22f249328a7d40b8177eadf Mon Sep 17 00:00:00 2001 From: scorpio810 Date: Sun, 4 Oct 2015 10:35:50 +0000 Subject: [PATCH] Bug fix for reproducible debian git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4232 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/aboutqet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/aboutqet.cpp b/sources/aboutqet.cpp index bd2a89d6e..3d8cf535e 100644 --- a/sources/aboutqet.cpp +++ b/sources/aboutqet.cpp @@ -73,9 +73,9 @@ QWidget *AboutQET::title() const { icon -> setPixmap(QET::Icons::QETOxygenLogo.pixmap(48, 48)); // label "QElectroTech" QLabel *title = new QLabel("QElectroTech v" + QET::displayedVersion + ""); - QString compilation_info = "
" + tr("Compilation : ") + __DATE__ + " " + __TIME__; + QString compilation_info = "
" + tr("Compilation : "); #ifdef __GNUC__ - compilation_info += " - GCC " + QString(__VERSION__); + compilation_info += " GCC " + QString(__VERSION__); compilation_info += " - built with Qt " + QString(QT_VERSION_STR); compilation_info += " - run with Qt "+ QString(qVersion()); #endif