Merge branch 'master' into openpgp

This commit is contained in:
James Booth
2015-06-17 19:55:52 +01:00
7 changed files with 139 additions and 185 deletions

View File

@@ -41,6 +41,7 @@
#include <signal.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <glib.h>
@@ -137,7 +138,8 @@ prof_handle_activity(void)
ProfWin *current = wins_get_current();
if ((status == JABBER_CONNECTED) && (current->type == WIN_CHAT)) {
ProfChatWin *chatwin = wins_get_current_chat();
ProfChatWin *chatwin = (ProfChatWin*)current;
assert(chatwin->memcheck == PROFCHATWIN_MEMCHECK);
chat_state_handle_typing(chatwin->barejid, chatwin->state);
}
}