Fix compile error

This commit is contained in:
Hylke Bons 2012-01-12 00:21:34 +00:00
parent b0457580b5
commit d36ef5ee48

View file

@ -34,6 +34,8 @@ namespace SparkleLib {
public static SparkleConfig DefaultConfig = new SparkleConfig (ConfigPath, "config.xml");
public string FullPath;
public string LogFilePath;
public string TmpPath;
public string HomePath {
get {
@ -53,13 +55,6 @@ namespace SparkleLib {
}
}
public string TmpPath {
get {
return Path.Combine (FoldersPath, ".tmp");
}
}
public SparkleConfig (string config_path, string config_file_name)
{
FullPath = Path.Combine (config_path, config_file_name);
@ -108,7 +103,7 @@ namespace SparkleLib {
} finally {
Load (FullPath);
TmpPath = Path.Combine(FoldersPath, ".tmp");
TmpPath = Path.Combine (FoldersPath, ".tmp");
}
}