From df81aa5942aa8a2ebc95e4d6920022faf31387a0 Mon Sep 17 00:00:00 2001 From: Oleg Krasilnikov Date: Mon, 16 Apr 2007 09:35:57 +0000 Subject: [PATCH] Bug #181022 - get rid of "strikeout" sign. --- .../internal/ui/viewsupport/ProblemsLabelDecorator.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/ProblemsLabelDecorator.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/ProblemsLabelDecorator.java index 4d1d5e2e33c..eac225e83d9 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/ProblemsLabelDecorator.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/ProblemsLabelDecorator.java @@ -93,7 +93,6 @@ public class ProblemsLabelDecorator implements ILabelDecorator, ILightweightLabe private static final int ERRORTICK_WARNING= CElementImageDescriptor.WARNING; private static final int ERRORTICK_ERROR= CElementImageDescriptor.ERROR; private static final int TICK_CONFIGURATION = CElementImageDescriptor.SYSTEM_INCLUDE; - private static final int TICK_EXCLUDE = CElementImageDescriptor.INACTIVE; private ImageDescriptorRegistry fRegistry; private boolean fUseNewRegistry= false; @@ -364,10 +363,6 @@ public class ProblemsLabelDecorator implements ILabelDecorator, ILightweightLabe decoration.addOverlay(CPluginImages.DESC_OVR_SYSTEM_INCLUDE); adornmentFlags &= ~TICK_CONFIGURATION; } - if ((adornmentFlags & TICK_EXCLUDE) != 0) { - decoration.addOverlay(CPluginImages.DESC_OVR_INACTIVE); - adornmentFlags &= ~TICK_EXCLUDE; - } if (adornmentFlags == ERRORTICK_ERROR) { decoration.addOverlay(CPluginImages.DESC_OVR_ERROR); @@ -388,8 +383,6 @@ public class ProblemsLabelDecorator implements ILabelDecorator, ILightweightLabe if (cf[i].isActive()) { ICResourceDescription out = cf[i].getResourceDescription(path, true); if (out != null) result |= TICK_CONFIGURATION; -// out = cf[i].getResourceDescription(path, false); - if (out != null && out.isExcluded()) result |= TICK_EXCLUDE; } } }