From 9acad59778cbf20c0dd251d04227dc34855d948c Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Wed, 17 May 2017 10:03:55 +0300 Subject: [PATCH] ProjectExplorer: Do not try to resolve file name for internals like or . Change-Id: I7d0dc63b2ce54f8d92cba248d504d8124a3689a7 Reviewed-by: Tobias Hunger --- src/plugins/projectexplorer/abstractprocessstep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/abstractprocessstep.cpp b/src/plugins/projectexplorer/abstractprocessstep.cpp index d0da2990fe0..f8ed59b89a0 100644 --- a/src/plugins/projectexplorer/abstractprocessstep.cpp +++ b/src/plugins/projectexplorer/abstractprocessstep.cpp @@ -370,7 +370,7 @@ void AbstractProcessStep::taskAdded(const Task &task, int linkedOutputLines, int Task editable(task); QString filePath = task.file.toString(); - if (!filePath.isEmpty() && !QDir::isAbsolutePath(filePath)) { + if (!filePath.isEmpty() && !filePath.startsWith('<') && !QDir::isAbsolutePath(filePath)) { // We have no save way to decide which file in which subfolder // is meant. Therefore we apply following heuristics: // 1. Check if file is unique in whole project