Changeset 272:463d461e6e78 for dwt/dwthelper/File.d
- Timestamp:
- 08/01/08 01:16:10 (5 months ago)
- Files:
-
- dwt/dwthelper/File.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/dwthelper/File.d
r264 r272 8 8 static import tango.io.model.IFile; 9 9 static import tango.io.FilePath; 10 static import tango.io.Path; 10 11 static import tango.io.FileSystem; 11 12 … … 27 28 28 29 public this ( String pathname ){ 29 mFilePath = new tango.io.FilePath.FilePath( pathname);30 mFilePath = new tango.io.FilePath.FilePath( tango.io.Path.standard( pathname )); 30 31 } 31 32
