From bb995d79847f715f98628c47f59d74d046fe09c1 Mon Sep 17 00:00:00 2001 From: David Rosca Date: Mon, 25 May 2015 10:39:39 +0200 Subject: [PATCH] Fix some warnings --- src/lib/app/qzcommon.cpp | 2 +- tests/autotests/autotests.pro | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/app/qzcommon.cpp b/src/lib/app/qzcommon.cpp index 13ae9e106..0869a3933 100644 --- a/src/lib/app/qzcommon.cpp +++ b/src/lib/app/qzcommon.cpp @@ -25,7 +25,7 @@ const int bookmarksVersion = 1; QUPZILLA_EXPORT const char* APPNAME = "QupZilla"; QUPZILLA_EXPORT const char* VERSION = QUPZILLA_VERSION; -QUPZILLA_EXPORT const char* BUILDTIME = __DATE__" "__TIME__; +QUPZILLA_EXPORT const char* BUILDTIME = __DATE__ " " __TIME__; QUPZILLA_EXPORT const char* AUTHOR = "David Rosca"; QUPZILLA_EXPORT const char* COPYRIGHT = "2010-2014"; QUPZILLA_EXPORT const char* WWWADDRESS = "http://www.qupzilla.com"; diff --git a/tests/autotests/autotests.pro b/tests/autotests/autotests.pro index 30203e7b1..4799da447 100644 --- a/tests/autotests/autotests.pro +++ b/tests/autotests/autotests.pro @@ -1,6 +1,6 @@ include($$PWD/../../src/defines.pri) -QT += webenginewidgets network widgets printsupport sql script gui-private testlib +QT += webenginewidgets network widgets printsupport sql script testlib TARGET = autotests