From c8f4ee66f6ae5a06cd81d3d95fc0f56628a93070 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Fri, 12 Oct 2018 07:21:37 +0200 Subject: [PATCH] ProjectExplorer: Fix compile for gcc5.3 Change-Id: I25b77b50b68c48cc23481ebf9af1bdea7ffef366 Reviewed-by: Orgad Shaneh --- src/plugins/projectexplorer/projectexplorer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 65981dbe28e..d8a131dc5ff 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -3633,7 +3633,7 @@ void ProjectExplorerPlugin::setBuildDirectoryTemplate(const QString &dir) QString ProjectExplorerPlugin::defaultBuildDirectoryTemplate() { - return Constants::DEFAULT_BUILD_DIRECTORY_TEMPLATE; + return QString(Constants::DEFAULT_BUILD_DIRECTORY_TEMPLATE); } QList > ProjectExplorerPlugin::recentProjects()