summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/compileroptionsbuilder.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-12-21 08:59:26 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2018-12-21 08:21:53 +0000
commite250543cc778c694b62de7667f69e617b5e13aca (patch)
tree0121538820072ae11e340fc3c6136fc911a4f696 /src/plugins/cpptools/compileroptionsbuilder.cpp
parenta0a97c2edc3a5a2cc8a39870742f68fbea5c2b70 (diff)
downloadqt-creator-e250543cc778c694b62de7667f69e617b5e13aca.tar.gz
CppTools: Fix build
Amends 97828a96af and ef8de6a384. Change-Id: I9dd7d6a093657ea6f20ff3b5a4d0c968f8293ad7 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/cpptools/compileroptionsbuilder.cpp')
-rw-r--r--src/plugins/cpptools/compileroptionsbuilder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/compileroptionsbuilder.cpp b/src/plugins/cpptools/compileroptionsbuilder.cpp
index d0c553c1eb..0f0df8c86c 100644
--- a/src/plugins/cpptools/compileroptionsbuilder.cpp
+++ b/src/plugins/cpptools/compileroptionsbuilder.cpp
@@ -576,7 +576,7 @@ void CompilerOptionsBuilder::addWrappedQtHeadersIncludePath(QStringList &list) c
QString CompilerOptionsBuilder::includeDirOptionForSystemPath(ProjectExplorer::HeaderPathType type) const
{
if (type == ProjectExplorer::HeaderPathType::Framework)
- return "-F";
+ return QString("-F");
if (m_useSystemHeader == UseSystemHeader::Yes)
return includeSystemPathOption;