From 1f29242276b83489b6671e0190cedc295e1360b9 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 8 Feb 2017 12:27:29 +0100 Subject: [PATCH] Debugger: Fix a few bogus CONFIG {+,-}= QT statements Should be lower case, and += is not really needed. Change-Id: If51cfcfd8e1971576fe67d3c53c8f18f416e3afe Reviewed-by: Orgad Shaneh --- tests/auto/debugger/tst_dumpers.cpp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index d017350e381..dcb970e7c1c 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -799,9 +799,7 @@ public: const Data &operator+(const CoreProfile &) const { - profileExtra += - "CONFIG += QT\n" - "QT += core\n"; + profileExtra += "QT += core\n"; useQt = true; useQHash = true; @@ -811,9 +809,7 @@ public: const Data &operator+(const NetworkProfile &) const { - profileExtra += - "CONFIG += QT\n" - "QT += core network\n"; + profileExtra += "QT += core network\n"; useQt = true; useQHash = true; @@ -1218,7 +1214,7 @@ void tst_Dumpers::dumper() if (data.useQt) proFile.write("QT -= widgets gui\n"); else - proFile.write("CONFIG -= QT\n"); + proFile.write("CONFIG -= qt\n"); if (m_useGLibCxxDebug) proFile.write("DEFINES += _GLIBCXX_DEBUG\n"); if (m_debuggerEngine == GdbEngine && m_debuggerVersion < 70500)