1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 21:15:23 +02:00

David McKnight (IBM) - [254614] Promptable filter's shouldn't require supportsCommands on the subsystem to be false

This commit is contained in:
David McKnight 2008-11-07 19:17:31 +00:00
parent fc356e5aab
commit cf7a0d9b03

View file

@ -31,6 +31,7 @@
* David McKnight (IBM) - [238507] Promptable Filters refreshed after modifying filter strings * David McKnight (IBM) - [238507] Promptable Filters refreshed after modifying filter strings
* David McKnight (IBM) - [244824] filter not refreshed if child is "empty list" or system message node * David McKnight (IBM) - [244824] filter not refreshed if child is "empty list" or system message node
* David McKnight (IBM) - [249245] not showing inappropriate popup actions for: Refresh, Show In Table, Go Into, etc. * David McKnight (IBM) - [249245] not showing inappropriate popup actions for: Refresh, Show In Table, Go Into, etc.
* David McKnight (IBM) - [254614] Promptable filter's shouldn't require supportsCommands on the subsystem to be false
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.internal.ui.view; package org.eclipse.rse.internal.ui.view;
@ -316,7 +317,7 @@ public class SystemViewFilterReferenceAdapter
final ISubSystemConfiguration ssf = SubSystemHelpers.getParentSubSystemConfiguration(referencedFilter); final ISubSystemConfiguration ssf = SubSystemHelpers.getParentSubSystemConfiguration(referencedFilter);
// PROMPTING FILTER?... // PROMPTING FILTER?...
if (promptable && !ssf.supportsCommands()) if (promptable)
{ {
final Object[] pchildren = new SystemMessageObject[1]; final Object[] pchildren = new SystemMessageObject[1];
final Object pelement = element; final Object pelement = element;