mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 23:55:26 +02:00
[210563] error messages need to be shown if incurred during filter expansion
This commit is contained in:
parent
a240d92192
commit
42e62bc9ac
1 changed files with 4 additions and 0 deletions
|
@ -25,6 +25,7 @@ import org.eclipse.jface.action.IAction;
|
|||
import org.eclipse.jface.wizard.IWizard;
|
||||
import org.eclipse.rse.core.filters.ISystemFilter;
|
||||
import org.eclipse.rse.core.filters.ISystemFilterPool;
|
||||
import org.eclipse.rse.core.model.ISystemMessageObject;
|
||||
import org.eclipse.rse.core.model.ISystemNewConnectionWizardPage;
|
||||
import org.eclipse.rse.core.subsystems.ISubSystemConfiguration;
|
||||
import org.eclipse.rse.internal.files.ui.actions.SystemFileUpdateFilterAction;
|
||||
|
@ -164,6 +165,9 @@ public class RemoteFileSubSystemConfigurationAdapter extends SubSystemConfigurat
|
|||
results.add(remoteFile);
|
||||
}
|
||||
}
|
||||
else if (children[i] instanceof ISystemMessageObject){
|
||||
results.add(children[i]);
|
||||
}
|
||||
}
|
||||
|
||||
return results.toArray();
|
||||
|
|
Loading…
Add table
Reference in a new issue