Merge commit 'refs/merge-requests/8' of git://gitorious.org/sparkleshare/sparkleshare

This commit is contained in:
Hylke Bons 2010-06-12 14:05:59 +01:00
commit b29d5a942f

View file

@ -29,6 +29,12 @@ namespace SparkleShare {
AttachToStatusIcon (SparkleUI.NotificationIcon);
}
new public void AddAction (string action, string label, ActionHandler handler) {
if (System.Array.IndexOf (Notifications.Global.Capabilities, "actions") > -1) {
base.AddAction(action, label, handler);
}
}
}
}