diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/stdclist/src/init.cpp | 1 | ||||
-rw-r--r-- | src/modules/clist/clistcore.cpp | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/core/stdclist/src/init.cpp b/src/core/stdclist/src/init.cpp index b8b542cc35..56774e5d29 100644 --- a/src/core/stdclist/src/init.cpp +++ b/src/core/stdclist/src/init.cpp @@ -136,6 +136,7 @@ extern "C" __declspec(dllexport) int CListInitialise() mir_getLP( &pluginInfo );
mir_getCLI();
+ pcli->hInst = g_hInst;
pcli->pfnPaintClc = PaintClc;
MySetLayeredWindowAttributes = (BOOL(WINAPI *) (HWND, COLORREF, BYTE, DWORD)) GetProcAddress(
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();
|