diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-12 21:25:23 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-13 19:37:18 +0800 |
commit | e5b71631aacf92ba8d242e0a3e3763555b8c751c (patch) | |
tree | 6d69a5753ec8e2406bec8aa1def606bc0d01469f /src/empathy-chat-window.c | |
parent | ab3c9ccb3c468f03ddc790bb2e5a84845684bfc5 (diff) | |
download | gsoc2013-empathy-e5b71631aacf92ba8d242e0a3e3763555b8c751c.tar gsoc2013-empathy-e5b71631aacf92ba8d242e0a3e3763555b8c751c.tar.gz gsoc2013-empathy-e5b71631aacf92ba8d242e0a3e3763555b8c751c.tar.bz2 gsoc2013-empathy-e5b71631aacf92ba8d242e0a3e3763555b8c751c.tar.lz gsoc2013-empathy-e5b71631aacf92ba8d242e0a3e3763555b8c751c.tar.xz gsoc2013-empathy-e5b71631aacf92ba8d242e0a3e3763555b8c751c.tar.zst gsoc2013-empathy-e5b71631aacf92ba8d242e0a3e3763555b8c751c.zip |
change empathy_notification_is_enabled to empathy_notify_manager_notification_is_enabled
Making it a method of EmpathyNotifyManager would allow us to cache the
gconf values if we want to.
Diffstat (limited to 'src/empathy-chat-window.c')
-rw-r--r-- | src/empathy-chat-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index fc64d340f..4d99afd31 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -1080,7 +1080,7 @@ chat_window_show_or_update_notification (EmpathyChatWindow *window, EmpathyChatWindowPriv *priv = GET_PRIV (window); gboolean res; - if (!empathy_notification_is_enabled ()) { + if (!empathy_notify_manager_notification_is_enabled (priv->notify_mgr)) { return; } else { empathy_conf_get_bool (empathy_conf_get (), |