~ubuntu-branches/ubuntu/vivid/radiotray/vivid

« back to all changes in this revision

Viewing changes to src/events/EventMngNotificationWrapper.py

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2013-05-09 21:24:43 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20130509212443-x1rgywggtb3bsorf
Tags: 0.7.3-1ubuntu1
* Merge from Debian unstable. (LP: #1156142, #972259, #972205)
  Remaining changes:
  - patch config to use appindicator by default
  - depend on python-appindicator

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
    def notify(self, title, message):
31
31
        self.eventManager.notify(self.eventManager.NOTIFICATION, {'title': title, 'message':message})
 
32
 
 
33
    def notify_icon(self, title, message, icon):
 
34
        self.eventManager.notify(self.eventManager.NOTIFICATION, {'title': title, 'message':message, 'icon':icon})