diff options
author | George Hazan <george.hazan@gmail.com> | 2015-02-28 10:30:20 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-02-28 10:30:20 +0000 |
commit | 4e2a8eb11a9a4286eb0bcb3386bab58e87ae4b69 (patch) | |
tree | a59c78f3bc9efed548e772fdd8e03590c836bd1a /protocols/Tox/src/tox_menus.cpp | |
parent | 4b123a75ad7a9a39be23947b7a2e11ff44b1e975 (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@12283 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_menus.cpp')
-rw-r--r-- | protocols/Tox/src/tox_menus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_menus.cpp b/protocols/Tox/src/tox_menus.cpp index 60daad3090..22398b3a01 100644 --- a/protocols/Tox/src/tox_menus.cpp +++ b/protocols/Tox/src/tox_menus.cpp @@ -2,7 +2,7 @@ HGENMENU CToxProto::ContactMenuItems[CMI_MAX];
-int CToxProto::OnPrebuildContactMenu(MCONTACT hContact, LPARAM)
+int CToxProto::OnPrebuildContactMenu(WPARAM hContact, LPARAM)
{
if (!hContact)
return 0;
@@ -26,7 +26,7 @@ int CToxProto::OnPrebuildContactMenu(MCONTACT hContact, LPARAM) return 0;
}
-int CToxProto::PrebuildContactMenu(MCONTACT hContact, LPARAM lParam)
+int CToxProto::PrebuildContactMenu(WPARAM hContact, LPARAM lParam)
{
for (int i = 0; i < SIZEOF(ContactMenuItems); i++)
{
|