1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-28 11:25:35 +02:00

dont' mark a container stale in the table provider (let the refresh action take care of that) fix for 149188

This commit is contained in:
David McKnight 2006-09-14 20:41:22 +00:00
parent 2e7912869b
commit fa18bd792c
2 changed files with 3 additions and 3 deletions

View file

@ -935,8 +935,8 @@ public class SystemTableView
if (provider != null) if (provider != null)
{ {
if (!madeChange) if (!madeChange)
{ {
provider.flushCache(); provider.flushCache();
madeChange = true; madeChange = true;
} }

View file

@ -339,7 +339,7 @@ public class SystemTableViewProvider implements ILabelProvider, ITableLabelProvi
} }
if (_lastObject instanceof ISystemContainer) if (_lastObject instanceof ISystemContainer)
{ {
((ISystemContainer)_lastObject).markStale(true); // ((ISystemContainer)_lastObject).markStale(true);
} }
_lastResults = null; _lastResults = null;