Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
blob fish
kdevelop
Commits
a3e05c37
Commit
a3e05c37
authored
Jan 19, 2015
by
Milian Wolff
Browse files
Use QDir::isRelativePath.
No need to get the other QFileInfo stuff loaded here.
parent
6cce95e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
projectmanagers/custommake/makefileresolver/makefileresolver.cpp
View file @
a3e05c37
...
...
@@ -689,7 +689,7 @@ PathResolutionResult MakeFileResolver::processOutput(const QString& fullOutput,
path
=
path
.
mid
(
1
,
path
.
length
()
-
2
);
}
}
if
(
Q
FileInfo
(
path
).
isRelative
(
))
if
(
Q
Dir
::
isRelative
Path
(
path
))
path
=
workingDirectory
+
'/'
+
path
;
ret
.
paths
<<
internPath
(
path
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment