Skip to content

Commit b5ffbf7

Browse files
authored
Merge pull request #85 from sakoPO/master
Bug fix #80. Fixed issue with URI is not absolute.
2 parents 7bae5b2 + bb816d1 commit b5ffbf7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

com.googlecode.cppcheclipse.ui/src/com/googlecode/cppcheclipse/ui/ToolchainSettings.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import com.googlecode.cppcheclipse.core.IToolchainSettings;
2626
import com.googlecode.cppcheclipse.core.Symbol;
2727

28+
2829
/**
2930
* Getting some settings done in the toolchain of CDT
3031
*
@@ -136,7 +137,7 @@ protected Collection<File> resolveIncludePath(File includePath)
136137
// if we could resolve the file
137138
if (files.length > 0) {
138139
for (IFile file : files) {
139-
result.add(new File(file.getRawLocationURI()));
140+
result.add(new File(file.getLocationURI()));
140141
}
141142
} else {
142143
// otherwise just take the whole file

0 commit comments

Comments
 (0)