Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/notify.py')
-rw-r--r--src/notify.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/notify.py b/src/notify.py
index 68c843073..d80d33d9a 100644
--- a/src/notify.py
+++ b/src/notify.py
@@ -50,13 +50,6 @@ try:
except ImportError:
USER_HAS_PYNOTIFY = False
-USER_HAS_GROWL = True
-try:
- import osx.growler
- osx.growler.init()
-except Exception:
- USER_HAS_GROWL = False
-
if gajim.HAVE_INDICATOR:
import indicate
@@ -358,13 +351,6 @@ def popup(event_type, jid, account, msg_type='', path_to_image=None,
indicator.connect('user-display', display, account, jid, msg_type)
indicator.show()
- # Try Growl first, as we might have D-Bus and notification daemon running
- # on OS X for some reason.
- if USER_HAS_GROWL:
- osx.growler.notify(event_type, jid, account, msg_type, path_to_image,
- title, text)
- return
-
# Try to show our popup via D-Bus and notification daemon
if gajim.config.get('use_notif_daemon') and dbus_support.supported:
try: