Solved a little regression that was causing AIM to crash.
This commit is contained in:
parent
2f142c0d67
commit
c5f730a8b3
|
@ -298,7 +298,7 @@ AIMProtocol::WaitForData(void* aimProtocol)
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
AIMProtocol::GotMessage(void* imcomm, char* who, char* recvmsg)
|
AIMProtocol::GotMessage(void* imcomm, char* who, int aut, char* recvmsg)
|
||||||
{
|
{
|
||||||
BMessage msg(IM_MESSAGE);
|
BMessage msg(IM_MESSAGE);
|
||||||
msg.AddInt32("im_what", IM_MESSAGE_RECEIVED);
|
msg.AddInt32("im_what", IM_MESSAGE_RECEIVED);
|
||||||
|
|
|
@ -37,7 +37,7 @@ public:
|
||||||
|
|
||||||
static int32 WaitForData(void*);
|
static int32 WaitForData(void*);
|
||||||
|
|
||||||
static void GotMessage(void*, char*, char*);
|
static void GotMessage(void*, char*, int, char*);
|
||||||
static void BuddyOnline(void*, char*);
|
static void BuddyOnline(void*, char*);
|
||||||
static void BuddyOffline(void*, char*);
|
static void BuddyOffline(void*, char*);
|
||||||
static void BuddyAway(void*, char*);
|
static void BuddyAway(void*, char*);
|
||||||
|
|
Ŝarĝante…
Reference in New Issue