From 515a2093407d338cdf535aa1ae412ae21aa6378c Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Fri, 4 Jun 2010 21:00:45 +0200 Subject: [PATCH] concatenate file path properly --- SparkleShare/SparklePaths.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SparkleShare/SparklePaths.cs b/SparkleShare/SparklePaths.cs index 09365632..de917636 100644 --- a/SparkleShare/SparklePaths.cs +++ b/SparkleShare/SparklePaths.cs @@ -41,7 +41,8 @@ namespace SparkleShare { public static string SparkleAvatarPath = Path.Combine (SparkleConfigPath, "avatars"); - public static string SparkleIconPath = "/usr/share/icons/hicolor"; + public static string SparkleIconPath = + SparkleHelpers.CombineMore ("usr", "share", "icons", "hicolor"); }