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

[187285] patch to mark the directory shown in the table stale when a new resource is created

This commit is contained in:
David McKnight 2007-05-23 20:24:40 +00:00
parent 4034c5bfca
commit 0905ccf300

View file

@ -11,6 +11,7 @@
* Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley. * Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley.
* *
* Contributors: * Contributors:
* Kevin Doyle (IBM) - [187736] Marked _objectInput stale when new resource created
* Martin Oberhuber (Wind River) - [168975] Move RSE Events API to Core * Martin Oberhuber (Wind River) - [168975] Move RSE Events API to Core
* Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry * Martin Oberhuber (Wind River) - [186773] split ISystemRegistryUI from ISystemRegistry
********************************************************************************/ ********************************************************************************/
@ -1027,6 +1028,10 @@ public class SystemTableView
} }
if (!madeChange) if (!madeChange)
{ {
if (_objectInput instanceof ISystemContainer)
{
((ISystemContainer)_objectInput).markStale(true);
}
provider.flushCache(); provider.flushCache();
madeChange = true; madeChange = true;
} }