From 301ee516704c197f6d8bfbb8ed6e2efccf1674f0 Mon Sep 17 00:00:00 2001 From: Markus Schorn Date: Thu, 14 Sep 2006 09:10:05 +0000 Subject: [PATCH] Make CView show changes to working copies, bug 147694 --- .../org/eclipse/cdt/ui/CElementContentProvider.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/CElementContentProvider.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/CElementContentProvider.java index 9ed5854d838..82e50511c2f 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/CElementContentProvider.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/CElementContentProvider.java @@ -165,12 +165,13 @@ public class CElementContentProvider extends BaseCElementContentProvider impleme } // We do not care about changes in Working copies - if (element instanceof ITranslationUnit) { - ITranslationUnit unit = (ITranslationUnit) element; - if (unit.isWorkingCopy()) { - return; - } - } + // well, we do see bugzilla 147694 +// if (element instanceof ITranslationUnit) { +// ITranslationUnit unit = (ITranslationUnit) element; +// if (unit.isWorkingCopy()) { +// return; +// } +// } if (kind == ICElementDelta.REMOVED) { Object parent = internalGetParent(element);