Moved message functions to xmpp_message.c

This commit is contained in:
James Booth
2013-01-29 00:37:50 +00:00
parent b269ac9702
commit 0f01f30b9c
6 changed files with 298 additions and 283 deletions

View File

@@ -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);
}
}
}