[empathy] chat-window: don't present chat if notification has been dismissed



commit 023eba833dab183c7d31250649290acdd5eff32d
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Wed Apr 7 11:08:45 2010 +0200

    chat-window: don't present chat if notification has been dismissed
    
    Clicking on a notification mean 'please go away'. If user wants to approve the
    action he has to click on the 'Reply' button.
    
    This code was broken anyway so we don't change the current behaviour.

 src/empathy-chat-window.c |    8 --------
 1 files changed, 0 insertions(+), 8 deletions(-)
---
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index 9f5fb6c..efdb291 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -1212,16 +1212,8 @@ static void
 chat_window_notification_closed_cb (NotifyNotification *notify,
 				    NotificationData *cb_data)
 {
-	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 == EMPATHY_NOTIFICATION_CLOSED_DISMISSED) {
-		empathy_chat_window_present_chat (cb_data->chat);
-	}
-
 	g_object_unref (notify);
 	free_notification_data (cb_data);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]