Show
Ignore:
Timestamp:
08/01/08 01:16:10 (5 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Fix path handling, thanks yidabu for reporting.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dwthelper/File.d

    r264 r272  
    88static import tango.io.model.IFile; 
    99static import tango.io.FilePath; 
     10static import tango.io.Path; 
    1011static import tango.io.FileSystem; 
    1112 
     
    2728 
    2829    public this ( String pathname ){ 
    29         mFilePath = new tango.io.FilePath.FilePath( pathname ); 
     30        mFilePath = new tango.io.FilePath.FilePath( tango.io.Path.standard( pathname )); 
    3031    } 
    3132