aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/gtest/gtestconfiguration.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/autotest/gtest/gtestconfiguration.cpp')
-rw-r--r--src/plugins/autotest/gtest/gtestconfiguration.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/autotest/gtest/gtestconfiguration.cpp b/src/plugins/autotest/gtest/gtestconfiguration.cpp
index 615ddcd3da0..13cbebc2467 100644
--- a/src/plugins/autotest/gtest/gtestconfiguration.cpp
+++ b/src/plugins/autotest/gtest/gtestconfiguration.cpp
@@ -32,6 +32,7 @@
#include "../testsettings.h"
#include <utils/algorithm.h>
+#include <utils/stringutils.h>
namespace Autotest {
namespace Internal {
@@ -76,7 +77,7 @@ QStringList GTestConfiguration::argumentsForTestRunner(QStringList *omitted) con
QStringList arguments;
if (AutotestPlugin::settings()->processArgs) {
arguments << filterInterfering(runnable().commandLineArguments.split(
- ' ', QString::SkipEmptyParts), omitted);
+ ' ', Utils::SkipEmptyParts), omitted);
}
const QStringList &testSets = testCases();