diff options
Diffstat (limited to 'protocols/Omegle')
-rw-r--r-- | protocols/Omegle/src/chat.cpp | 2 | ||||
-rw-r--r-- | protocols/Omegle/src/proto.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Omegle/src/chat.cpp b/protocols/Omegle/src/chat.cpp index 1c14409e74..f9d1c75b0a 100644 --- a/protocols/Omegle/src/chat.cpp +++ b/protocols/Omegle/src/chat.cpp @@ -361,7 +361,7 @@ void OmegleProto::ClearChat() }
// TODO: Could this be done better?
-HANDLE OmegleProto::GetChatHandle()
+HCONTACT OmegleProto::GetChatHandle()
{
/*if (facy.chatHandle_ != NULL)
return facy.chatHandle_;
diff --git a/protocols/Omegle/src/proto.h b/protocols/Omegle/src/proto.h index 0827d7616c..f274dc0174 100644 --- a/protocols/Omegle/src/proto.h +++ b/protocols/Omegle/src/proto.h @@ -132,7 +132,7 @@ public: void SetChatStatus(int);
void ClearChat();
void SetTopic(const TCHAR *topic = NULL);
- HANDLE GetChatHandle();
+ HCONTACT GetChatHandle();
// Connection client
Omegle_client facy;
|