aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-chat-window.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2009-01-31 01:08:35 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-01-31 01:08:35 +0800
commit1c9be03bce0df01013d0d252e6e1711798d9c090 (patch)
treee9af98e0cafa3b6de533204be8596e983be617d5 /src/empathy-chat-window.c
parent436d8d3104a2de219618964157a84f873437d730 (diff)
downloadgsoc2013-empathy-1c9be03bce0df01013d0d252e6e1711798d9c090.tar
gsoc2013-empathy-1c9be03bce0df01013d0d252e6e1711798d9c090.tar.gz
gsoc2013-empathy-1c9be03bce0df01013d0d252e6e1711798d9c090.tar.bz2
gsoc2013-empathy-1c9be03bce0df01013d0d252e6e1711798d9c090.tar.lz
gsoc2013-empathy-1c9be03bce0df01013d0d252e6e1711798d9c090.tar.xz
gsoc2013-empathy-1c9be03bce0df01013d0d252e6e1711798d9c090.tar.zst
gsoc2013-empathy-1c9be03bce0df01013d0d252e6e1711798d9c090.zip
Prefix "Empathy" to the notification enum.
svn path=/trunk/; revision=2304
Diffstat (limited to 'src/empathy-chat-window.c')
-rw-r--r--src/empathy-chat-window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index 83f9c8166..d7c1a398f 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -845,13 +845,13 @@ static void
chat_window_notification_closed_cb (NotifyNotification *notify,
NotificationData *cb_data)
{
- int reason = 0;
+ EmpathyNotificationClosedReason reason = 0;
EmpathyChatWindowPriv *priv = GET_PRIV (cb_data->window);
#ifdef notify_notification_get_closed_reason
reason = notify_notification_get_closed_reason (notify);
#endif
- if (reason == NOTIFICATION_CLOSED_DISMISSED) {
+ if (reason == EMPATHY_NOTIFICATION_CLOSED_DISMISSED) {
empathy_chat_window_present_chat (cb_data->chat);
}