From 00e38fc11995472d61d5f517de46b0293dca276f Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Wed, 30 Sep 2015 13:58:59 +0300 Subject: [PATCH] Fixed Windows build. --HG-- branch : develop --- src/test/ValentinaTest/abstracttest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/ValentinaTest/abstracttest.cpp b/src/test/ValentinaTest/abstracttest.cpp index 934a089a2..5f5f0221d 100644 --- a/src/test/ValentinaTest/abstracttest.cpp +++ b/src/test/ValentinaTest/abstracttest.cpp @@ -53,7 +53,7 @@ QString AbstractTest::ValentinaPath() const { const QString path = QStringLiteral("/../../../app/valentina/bin/valentina"); #ifdef Q_OS_WIN - return QApplication::applicationDirPath() + path + QStringList(".exe"); + return QApplication::applicationDirPath() + path + QStringLiteral(".exe"); #else return QApplication::applicationDirPath() + path; #endif @@ -64,7 +64,7 @@ QString AbstractTest::TapePath() const { const QString path = QStringLiteral("/../../../app/tape/bin/tape"); #ifdef Q_OS_WIN - return QApplication::applicationDirPath() + path + QStringList(".exe"); + return QApplication::applicationDirPath() + path + QStringLiteral(".exe"); #else return QApplication::applicationDirPath() + path; #endif