Fixed a couple of compile bugs

This commit is contained in:
Jorge A Gallegos 2011-05-15 01:10:40 -07:00
parent 7235d9fa30
commit a58cc25d09
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);