# HG changeset patch # User Frank Benoit # Date 1217731101 -7200 # Node ID 7931ee9b41e6ebcbfff69c6817b0015c37bd70da # Parent 425c1adb5de59623beda9e0775d7a97b52130854 Fix path handling, thanks yidabu for reporting. diff -r 425c1adb5de5 -r 7931ee9b41e6 jface/FileTreeViewer.d --- a/jface/FileTreeViewer.d Sun Aug 03 02:19:19 2008 +0200 +++ b/jface/FileTreeViewer.d Sun Aug 03 04:38:21 2008 +0200 @@ -36,6 +36,7 @@ //------------------------------------ import tango.io.FileSystem; +import tango.io.Path; import tango.io.FilePath; import tango.util.log.Trace; @@ -133,7 +134,7 @@ if( root == `A:\`|| root == `B:\` ){ continue; } - res ~= new FilePath( root ); + res ~= new FilePath( tango.io.Path.standard( root )); } return res; }