aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2009-01-31 01:08:08 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2009-01-31 01:08:08 +0800
commit88d1cc40c76aa87dd50de59be06e90a355e20137 (patch)
treeb139f19b25a52d1f479e70d0cd1e8e68ac19b395
parent13ef586215d888a939e8f34c44f703b93aa916c7 (diff)
downloadgsoc2013-empathy-88d1cc40c76aa87dd50de59be06e90a355e20137.tar
gsoc2013-empathy-88d1cc40c76aa87dd50de59be06e90a355e20137.tar.gz
gsoc2013-empathy-88d1cc40c76aa87dd50de59be06e90a355e20137.tar.bz2
gsoc2013-empathy-88d1cc40c76aa87dd50de59be06e90a355e20137.tar.lz
gsoc2013-empathy-88d1cc40c76aa87dd50de59be06e90a355e20137.tar.xz
gsoc2013-empathy-88d1cc40c76aa87dd50de59be06e90a355e20137.tar.zst
gsoc2013-empathy-88d1cc40c76aa87dd50de59be06e90a355e20137.zip
Fix order or params in chat_window_show_or_update_notification ().
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@2295 4ee84921-47dd-4033-b63a-18d7a039a3e4
-rw-r--r--src/empathy-chat-window.c6
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) {