]> git.0d.be Git - empathy.git/commitdiff
Fix order or params in chat_window_show_or_update_notification ().
authorXavier Claessens <xclaesse@src.gnome.org>
Fri, 30 Jan 2009 17:08:08 +0000 (17:08 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Fri, 30 Jan 2009 17:08:08 +0000 (17:08 +0000)
svn path=/trunk/; revision=2295

src/empathy-chat-window.c

index cbb6c085c4cac81bee447406116e104ace983c7d..b974829801e821b5bd16b478371f74960e638cf1 100644 (file)
@@ -860,8 +860,8 @@ chat_window_notification_closed_cb (NotifyNotification *notify,
 }
 
 static void
-chat_window_show_or_update_notification (EmpathyMessage *message,
-                                        EmpathyChatWindow *window,
+chat_window_show_or_update_notification (EmpathyChatWindow *window,
+                                        EmpathyMessage *message,
                                         EmpathyChat *chat)
 {
        EmpathyContact *sender;
@@ -944,7 +944,7 @@ chat_window_new_message_cb (EmpathyChat       *chat,
        }
 
        if (!has_focus) {
-               chat_window_show_or_update_notification (message, window, chat);
+               chat_window_show_or_update_notification (window, message, chat);
        }
 
        if (has_focus && priv->current_chat == chat) {