update coding style

This commit is contained in:
Hylke Bons 2010-06-12 17:29:32 +01:00
parent 845148d8c2
commit adb738d434

View file

@ -40,12 +40,16 @@ namespace SparkleShare {
public static string SparkleAvatarPath {
get {
string XDG_CACHE_HOME = Environment.GetEnvironmentVariable("XDG_CACHE_HOME");
if (XDG_CACHE_HOME != null) {
string XDG_CACHE_HOME =
Environment.GetEnvironmentVariable ("XDG_CACHE_HOME");
if (XDG_CACHE_HOME != null)
return Path.Combine (XDG_CACHE_HOME, "sparkleshare");
} else {
return SparkleHelpers.CombineMore (HomePath, ".cache", "sparkleshare");
}
else
return SparkleHelpers.CombineMore
(HomePath, ".cache", "sparkleshare");
}
}