diff options
author | George Hazan <ghazan@miranda.im> | 2023-03-04 18:05:38 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-03-04 18:05:38 +0300 |
commit | c4c1ce437199d554133859c635c3b986f1b353a9 (patch) | |
tree | 3a42f02723d5cb8d578bd7a21e1fc672cb700fdb /include | |
parent | 98786d882525db4b506eddb011901c60d51857ac (diff) |
fixes #3333 (Tox: search in Find/Add contacts tries to search any random input)
Diffstat (limited to 'include')
-rw-r--r-- | include/m_protoint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_protoint.h b/include/m_protoint.h index ed8b0f907f..f4dbf2473a 100644 --- a/include/m_protoint.h +++ b/include/m_protoint.h @@ -226,8 +226,8 @@ public: virtual HANDLE SearchBasic(const wchar_t *id);
virtual HANDLE SearchByEmail(const wchar_t *email);
virtual HANDLE SearchByName(const wchar_t *nick, const wchar_t *firstName, const wchar_t *lastName);
- virtual HWND SearchAdvanced(HWND owner);
- virtual HWND CreateExtendedSearchUI(HWND owner);
+ virtual HANDLE SearchAdvanced(MWindow owner);
+ virtual MWindow CreateExtendedSearchUI(MWindow owner);
virtual int RecvContacts(MCONTACT hContact, PROTORECVEVENT *);
virtual int RecvFile(MCONTACT hContact, PROTORECVFILE *);
|