about summary refs log tree commit diff stats
path: root/src/ui_windows.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-01-29 00:37:50 +0000
committerJames Booth <boothj5@gmail.com>2013-01-29 00:37:50 +0000
commit0f01f30b9c6cefcb0b6e79e4e5f59652bf50eb73 (patch)
tree0cc5cd5ebf3bafebef3d64de63bf6a8c46aef83a /src/ui_windows.c
parentb269ac97022bd15ac9a62d8b7cc98646313c4ce5 (diff)
downloadprofani-tty-0f01f30b9c6cefcb0b6e79e4e5f59652bf50eb73.tar.gz
Moved message functions to xmpp_message.c
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);
             }
         }
     }