1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 12:55:40 +02:00

[416550] filter rename does case-insensitive check against original

filter name

-make sure filter is not readonly
This commit is contained in:
Dave McKnight 2013-10-25 12:08:01 -04:00
parent 32391805a2
commit b896bfa678

View file

@ -903,7 +903,7 @@ public class SystemViewFilterReferenceAdapter
if (fRef != null) if (fRef != null)
{ {
ISubSystemConfiguration factory = getSubSystemConfiguration(fRef.getReferencedFilter()); ISubSystemConfiguration factory = getSubSystemConfiguration(fRef.getReferencedFilter());
if (factory.supportsDropInFilters()) if (factory.supportsDropInFilters() && !fRef.getReferencedFilter().isNonChangable())
{ {
// if the drop is handled by the subsystem rather than this adapter, this will be true. // if the drop is handled by the subsystem rather than this adapter, this will be true.
if (factory.providesCustomDropInFilters()) if (factory.providesCustomDropInFilters())