diff options
Diffstat (limited to 'protocols/JabberG/src/jabber_search.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_search.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_search.cpp b/protocols/JabberG/src/jabber_search.cpp index 5102211399..98d418a548 100644 --- a/protocols/JabberG/src/jabber_search.cpp +++ b/protocols/JabberG/src/jabber_search.cpp @@ -712,7 +712,7 @@ HWND CJabberProto::CreateExtendedSearchUI(HWND parent) //////////////////////////////////////////////////////////////////////////
// The function formats request to server
-HWND CJabberProto::SearchAdvanced(HWND hwndDlg)
+HANDLE CJabberProto::SearchAdvanced(HWND hwndDlg)
{
if (!m_bJabberOnline || !hwndDlg)
return nullptr; //error
@@ -759,7 +759,7 @@ HWND CJabberProto::SearchAdvanced(HWND hwndDlg) if (fRequestNotEmpty) {
m_ThreadInfo->send(iq);
- return (HWND)pInfo->GetIqId();
+ return (HANDLE)pInfo->GetIqId();
}
return nullptr;
}
|