diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-31 01:08:08 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-31 01:08:08 +0800 |
commit | 991e8bfd4396da222723a7a1712d37aab75111aa (patch) | |
tree | b139f19b25a52d1f479e70d0cd1e8e68ac19b395 /src/empathy-chat-window.c | |
parent | f1de7218621b82fe0622aa04f380445150af39fc (diff) | |
download | gsoc2013-empathy-991e8bfd4396da222723a7a1712d37aab75111aa.tar gsoc2013-empathy-991e8bfd4396da222723a7a1712d37aab75111aa.tar.gz gsoc2013-empathy-991e8bfd4396da222723a7a1712d37aab75111aa.tar.bz2 gsoc2013-empathy-991e8bfd4396da222723a7a1712d37aab75111aa.tar.lz gsoc2013-empathy-991e8bfd4396da222723a7a1712d37aab75111aa.tar.xz gsoc2013-empathy-991e8bfd4396da222723a7a1712d37aab75111aa.tar.zst gsoc2013-empathy-991e8bfd4396da222723a7a1712d37aab75111aa.zip |
Fix order or params in chat_window_show_or_update_notification ().
svn path=/trunk/; revision=2295
Diffstat (limited to 'src/empathy-chat-window.c')
-rw-r--r-- | src/empathy-chat-window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index cbb6c085c..b97482980 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -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) { |