Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2009-07-19 14:42:13 +0400
committerEion Robb <eion@robbmob.com>2009-07-19 14:42:13 +0400
commit0fd46aef12ed12875663a55e4a11da3d52a8bc13 (patch)
tree7dab20d513b63bec4e474ddc8da7f5af3d4b0dd4 /skype_events.c
parent72d2c2d99a03f209efbe9bde5debcffc344dbd9c (diff)
More compiler errors
Diffstat (limited to 'skype_events.c')
-rw-r--r--skype_events.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/skype_events.c b/skype_events.c
index d58f4cc..317b3e0 100644
--- a/skype_events.c
+++ b/skype_events.c
@@ -902,7 +902,7 @@ skype_find_chat(const gchar *chat_id, PurpleAccount *this_account)
{
chat->conv = purple_find_conversation_with_account(chat->type, chat->partner_handle, chat->account);
if (!chat->conv)
- chat->conv = purple_conversation_new(chat->conv, chat->account, chat->partner_handle);
+ chat->conv = purple_conversation_new(chat->type, chat->account, chat->partner_handle);
}
}
if (chat->conv)
@@ -1034,7 +1034,7 @@ handle_complete_message(int messagenumber)
if (chat->prpl_chat_id)
i = chat->prpl_chat_id;
else
- i = g_str_hash(chat->chat_id);
+ i = g_str_hash(chat->name);
serv_got_chat_in(skypemessage->account->gc, i, skypemessage->from_handle, skypemessage->flags, body_html, skypemessage->timestamp);
}
} else if (chat->type == PURPLE_CONV_TYPE_IM)