diff mde/file/mergetag/Reader.d @ 114:b16a534f5302

Changes for tango r4201. Added override keyword in a lot of places.
author Diggory Hardy <diggory.hardy@gmail.com>
date Fri, 19 Dec 2008 15:15:06 +0000
parents 1655693702fc
children 7ababdf97748
line wrap: on
line diff
--- a/mde/file/mergetag/Reader.d	Fri Dec 19 10:32:28 2008 +0000
+++ b/mde/file/mergetag/Reader.d	Fri Dec 19 15:15:06 2008 +0000
@@ -215,7 +215,7 @@
         
         // Open & read the file
         try {	// Supports unicode files with a BOM; defaults to UTF8 when there isn't a BOM:
-            scope file = new UnicodeFile!(char) (path, Encoding.Unknown);
+            scope file = new UnicodeFile!(char) (path.toString, Encoding.Unknown);
             fbuf = cast(char[]) file.read();
         } catch (Exception e) {
             throwMTErr ("Error reading file: " ~ e.msg, new MTFileIOException);