about summary refs log tree commit diff stats
path: root/src/ui_windows.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui_windows.c')
-rw-r--r--src/ui_windows.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui_windows.c b/src/ui_windows.c
index 6c762e9b..cb92bfaf 100644
--- a/src/ui_windows.c
+++ b/src/ui_windows.c
@@ -314,14 +314,14 @@ ui_idle(void)
 
             if (chat_session_is_gone(recipient) &&
                     !chat_session_get_sent(recipient)) {
-                jabber_send_gone(recipient);
+                message_send_gone(recipient);
             } else if (chat_session_is_inactive(recipient) &&
                     !chat_session_get_sent(recipient)) {
-                jabber_send_inactive(recipient);
+                message_send_inactive(recipient);
             } else if (prefs_get_outtype() &&
                     chat_session_is_paused(recipient) &&
                     !chat_session_get_sent(recipient)) {
-                jabber_send_paused(recipient);
+                message_send_paused(recipient);
             }
         }
     }