Skip to content

Commit bb816d1

Browse files
committed
Bug fix #80. Fixed issue with URI is not absolute.
1 parent 7bae5b2 commit bb816d1

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)