mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Fix to [Bug 175550] [Project Model] assertion failed trying to specify a filter
This commit is contained in:
parent
bb8c4718f7
commit
03ab241bc3
2 changed files with 2 additions and 0 deletions
|
@ -1300,6 +1300,7 @@ public class PathEntryTranslator {
|
||||||
Set srcPathSet = new HashSet();
|
Set srcPathSet = new HashSet();
|
||||||
IPath projPath = fProject != null ? fProject.getFullPath() : null;
|
IPath projPath = fProject != null ? fProject.getFullPath() : null;
|
||||||
PathSettingsContainer cr = PathSettingsContainer.createRootContainer();
|
PathSettingsContainer cr = PathSettingsContainer.createRootContainer();
|
||||||
|
cr.setValue(Boolean.TRUE);
|
||||||
|
|
||||||
// Map exclusionMap = new HashMap();
|
// Map exclusionMap = new HashMap();
|
||||||
|
|
||||||
|
|
|
@ -472,6 +472,7 @@ public class CConfigurationDescription extends CDataProxyContainer implements IC
|
||||||
IPath entryPath;
|
IPath entryPath;
|
||||||
IPath paths[];
|
IPath paths[];
|
||||||
PathSettingsContainer cr = PathSettingsContainer.createRootContainer();
|
PathSettingsContainer cr = PathSettingsContainer.createRootContainer();
|
||||||
|
cr.setValue(Boolean.TRUE);
|
||||||
Set srcPathSet = new HashSet();
|
Set srcPathSet = new HashSet();
|
||||||
IProject project = fIsPreference ? null : getProjectDescription().getProject();
|
IProject project = fIsPreference ? null : getProjectDescription().getProject();
|
||||||
IPath projPath = project != null ? project.getFullPath() : null;
|
IPath projPath = project != null ? project.getFullPath() : null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue