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

[197089] Need to set the filter when there is no separator in filter string

This commit is contained in:
David McKnight 2007-07-19 18:30:40 +00:00
parent b41d2338ae
commit 599dc028c2

View file

@ -24,6 +24,7 @@
* Martin Oberhuber (Wind River) - [189130] Move SystemIFileProperties from UI to Core
* Xuan Chen (IBM) - [180671] [refresh] It is not possible to refresh editor with double clicking on it
* David Dykstal (IBM) - [160776] format file size according to client system conventions and locale
* David McKnight (IBM) - [197089] Need to set the filter when there is no separator in filter string
********************************************************************************/
package org.eclipse.rse.internal.files.ui.view;
@ -604,6 +605,11 @@ public class SystemViewRemoteFileAdapter
{
filter = filterString.substring(sepIndex + 1);
}
else
{
// fix for 197089
filter = filterString;
}
}
}
else