1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Bug 480259 - Up button converts path to local file system

Change-Id: Ic6288d779ca79a83c71a1a54fe40e7e4570dd14a
Signed-off-by: Greg Watson <g.watson@computer.org>
This commit is contained in:
Greg Watson 2015-10-22 09:34:01 -04:00
parent 4f4bfbfca8
commit b9bfeab706

View file

@ -279,7 +279,7 @@ public class RemoteResourceBrowserWidget extends Composite {
@Override @Override
public void widgetSelected(SelectionEvent e) { public void widgetSelected(SelectionEvent e) {
if (!fRootPath.isRoot()) { if (!fRootPath.isRoot()) {
setRoot(fRootPath.removeLastSegments(1).toOSString()); setRoot(fRootPath.removeLastSegments(1).toString());
} }
} }
}); });