1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 20:35:38 +02:00

Fix for [Bug 179223] Invalid Project Path on config switch

This commit is contained in:
Mikhail Sennikovsky 2007-03-26 14:05:21 +00:00
parent 2cbdda97c7
commit 9e498979be

View file

@ -425,7 +425,8 @@ public class PathEntryUtil {
IProject project = cProject.getProject();
IPath path = entry.getPath();
if (entry.getEntryKind() != IPathEntry.CDT_PROJECT &&
entry.getEntryKind() != IPathEntry.CDT_CONTAINER) {
entry.getEntryKind() != IPathEntry.CDT_CONTAINER
&& entry.getEntryKind() != IPathEntry.CDT_OUTPUT) {
if (!isValidWorkspacePath(project, path)) {
return new CModelStatus(
ICModelStatusConstants.INVALID_PATHENTRY,