Skip to content
Snippets Groups Projects
Commit 302f7000 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

misc: remove excess debug log

Change-Id: Ie34eae62d9726378ab1bf5d0233410c561696fc5
parent adb8c982
No related branches found
No related tags found
No related merge requests found
......@@ -101,8 +101,7 @@ MainApplication::MainApplication(int& argc, char** argv)
: QApplication(argc, argv)
{
const char* qtVersion = qVersion();
qInfo() << "Using Qt runtime version:" << qtVersion << " - "
<< strnlen(qtVersion, sizeof qtVersion);
qInfo() << "Using Qt runtime version:" << qtVersion;
if (strncmp(qtVersion, QT_VERSION_STR, strnlen(qtVersion, sizeof qtVersion)) != 0) {
qFatal(QString("Qt build version mismatch!(%1)").arg(QT_VERSION_STR).toLatin1());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment