get rid of warning

This commit is contained in:
Hylke Bons 2011-03-06 15:30:49 +00:00
parent 29e797a9ba
commit ec61f4fc61
2 changed files with 3 additions and 4 deletions

View file

@ -32,11 +32,11 @@ namespace SparkleShare {
Timeout = 4500; Timeout = 4500;
// Urgency = Urgency.Low; // Urgency = Urgency.Low;
// AttachToStatusIcon (SparkleUI.StatusIcon); //Show ();
} }
public void Show () {}
// Checks whether the system allows adding buttons to a notification, // Checks whether the system allows adding buttons to a notification,
// prevents error messages in Ubuntu. // prevents error messages in Ubuntu.
// new public void AddAction (string action, string label, ActionHandler handler) // new public void AddAction (string action, string label, ActionHandler handler)

View file

@ -157,8 +157,7 @@ namespace SparkleShare {
string title = _("Ouch! Mid-air collision!"); string title = _("Ouch! Mid-air collision!");
string subtext = _("Don't worry, SparkleShare made a copy of each conflicting file."); string subtext = _("Don't worry, SparkleShare made a copy of each conflicting file.");
SparkleBubble bubble = new SparkleBubble(title, subtext); new SparkleBubble(title, subtext).Show ();
// bubble.Show ();
}); });
}; };