changeset 575:dd3fe62c8a96

Compiles with Tango 0.99.4 now.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 04 Jan 2008 23:00:38 +0100
parents ae8f58a13917
children 0df647660e76
files trunk/src/dil/SettingsLoader.d trunk/src/main.d
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/trunk/src/dil/SettingsLoader.d	Mon Dec 31 14:48:45 2007 +0100
+++ b/trunk/src/dil/SettingsLoader.d	Fri Jan 04 23:00:38 2008 +0100
@@ -16,7 +16,7 @@
   scope execPath = new FilePath(GetExecutableFilePath());
 
   // Load config.d
-  auto filePath = execPath.file("config.d").toUtf8();
+  auto filePath = execPath.file("config.d").toString();
   auto modul = new Module(filePath);
   modul.parse();
 
@@ -67,7 +67,7 @@
   }
 
   // Load language file.
-  filePath = execPath.file(GlobalSettings.langFile).toUtf8();
+  filePath = execPath.file(GlobalSettings.langFile).toString();
   modul = new Module(filePath);
   modul.parse();
 
--- a/trunk/src/main.d	Mon Dec 31 14:48:45 2007 +0100
+++ b/trunk/src/main.d	Fri Jan 04 23:00:38 2008 +0100
@@ -23,7 +23,7 @@
 import Integer = tango.text.convert.Integer;
 import tango.io.File;
 import tango.text.Util;
-import tango.util.time.StopWatch;
+import tango.time.StopWatch;
 
 void main(char[][] args)
 {