[qet] qet/qet: [5157] MacOS minor add Thread Count in aboutqet

[ Thread Index | Date Index | More lists.tuxfamily.org/qet Archives ]


Revision: 5157
Author:   scorpio810
Date:     2017-12-09 15:05:42 +0100 (Sat, 09 Dec 2017)
Log Message:
-----------
MacOS minor add Thread Count in aboutqet

Modified Paths:
--------------
    trunk/sources/aboutqet.cpp

Modified: trunk/sources/aboutqet.cpp
===================================================================
--- trunk/sources/aboutqet.cpp	2017-12-09 13:19:15 UTC (rev 5156)
+++ trunk/sources/aboutqet.cpp	2017-12-09 14:05:42 UTC (rev 5157)
@@ -60,6 +60,8 @@
 		scrollArea->setWidgetResizable(true);
 		scrollArea->setFixedSize (590, 590);
 		scrollArea->setWidget(tabs);
+		scrollArea->setWindowModality(Qt::ApplicationModal);
+
 }
 
 /**
@@ -80,11 +82,12 @@
 	compilation_info += "  CLANG " + QString(__clang_version__ );
 	compilation_info += " - built with Qt " + QString(QT_VERSION_STR);
 	compilation_info += " - run with Qt "+ QString(qVersion());
+	compilation_info += " using" + QString(" %1 thread(s)").arg(QThread::idealThreadCount());
 #else
 	compilation_info += "  GCC " + QString(__VERSION__);
 	compilation_info += " - built with Qt " + QString(QT_VERSION_STR);
 	compilation_info += " - run with Qt "+ QString(qVersion());
-	compilation_info += " using" + QString(" %1 thread(s)...").arg(QThread::idealThreadCount());
+	compilation_info += " using" + QString(" %1 thread(s)").arg(QThread::idealThreadCount());
 #endif
 #endif
 	title -> setAlignment(Qt::AlignCenter);


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/