mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 15:45:25 +02:00
[142712] fix for dstore windows filter polls with non-default profile
This commit is contained in:
parent
8c22f3c8d0
commit
dcd2527ac4
1 changed files with 10 additions and 0 deletions
|
@ -62,6 +62,16 @@ public class DStoreWindowsFileSubSystemConfiguration extends DStoreFileSubSystem
|
|||
|
||||
mgr.createSystemFilter(pool, filterName, filterStrings);
|
||||
}
|
||||
else
|
||||
{
|
||||
Vector filterStrings = new Vector();
|
||||
filterStrings = new Vector();
|
||||
RemoteFileFilterString defaultFilterString = new RemoteFileFilterString(this);
|
||||
filterStrings.add(defaultFilterString.toString());
|
||||
String filterName = SystemFileResources.RESID_FILTER_DRIVES;
|
||||
|
||||
mgr.createSystemFilter(pool, filterName, filterStrings);
|
||||
}
|
||||
}
|
||||
catch (Exception exc)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue