diff trunk/src/dil/SettingsLoader.d @ 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 433d51c18524
children fa6d3c52757d
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();