diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-08 11:37:28 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-08 11:37:28 +0000 |
commit | 6b05d57a1d02f233409a2e4392e22b7a3a756a8f (patch) | |
tree | 81da58d8ee4ed00139cf6da3fcc03a6405ab69be /src/modules/clist | |
parent | 67abd5767f442340f8c98cb08dc0b43ecb5cf783 (diff) |
fix for the undocumented MS_CLIST_RETRIEVE_INTERFACE feature
git-svn-id: http://svn.miranda-ng.org/main/trunk@4384 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/clist')
-rw-r--r-- | src/modules/clist/clistcore.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/modules/clist/clistcore.cpp b/src/modules/clist/clistcore.cpp index d69a1a77db..3979e73cfc 100644 --- a/src/modules/clist/clistcore.cpp +++ b/src/modules/clist/clistcore.cpp @@ -62,7 +62,7 @@ static void fnReloadProtoMenus(void) cli.pfnCluiProtocolStatusChanged(0, 0);
}
-static INT_PTR srvRetrieveInterface(WPARAM, LPARAM lParam)
+static INT_PTR srvRetrieveInterface(WPARAM, LPARAM)
{
int rc;
@@ -211,8 +211,6 @@ static INT_PTR srvRetrieveInterface(WPARAM, LPARAM lParam) cli.pfnReloadExtraIcons = fnReloadExtraIcons;
cli.pfnSetAllExtraIcons = fnSetAllExtraIcons;
- cli.hInst = (HMODULE)lParam;
-
rc = LoadContactListModule2();
if (rc == 0)
rc = LoadCLCModule();
|