Merge pull request #173 from thekad/master

Couple of compile bugs fixed
This commit is contained in:
Hylke Bons 2011-05-15 04:06:29 -07:00
commit 230a8e0e61
2 changed files with 2 additions and 2 deletions

View file

@ -533,7 +533,7 @@ namespace SparkleShare {
Button open_folder_button = new Button (_("Open Folder"));
open_folder_button.Clicked += delegate {
SparkleShare.Controller.OpenSparkleShareFolder (Path.GetFileNameWithoutExtension(folder_name));
SparkleShare.Controller.OpenSparkleShareFolder (System.IO.Path.GetFileNameWithoutExtension(folder_name));
};
Button finish_button = new Button (_("Finish"));

View file

@ -84,7 +84,7 @@ namespace SparkleShare {
return;
SparkleBubble bubble = new SparkleBubble (user_name, message);
string avatar_file_path = SparkleUIHelpers.GetAvatar (user_email, 32);
string avatar_file_path = SparkleShare.Controller.GetAvatar (user_email, 32);
if (avatar_file_path != null)
bubble.Icon = new Gdk.Pixbuf (avatar_file_path);