diff options
Diffstat (limited to 'plugins/UserInfoEx/svc_refreshci.cpp')
-rw-r--r-- | plugins/UserInfoEx/svc_refreshci.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/UserInfoEx/svc_refreshci.cpp b/plugins/UserInfoEx/svc_refreshci.cpp index f091a5635b..fa3b00a584 100644 --- a/plugins/UserInfoEx/svc_refreshci.cpp +++ b/plugins/UserInfoEx/svc_refreshci.cpp @@ -922,15 +922,12 @@ static INT OnPreShutdown(WPARAM, LPARAM) **/
VOID SvcRefreshContactInfoLoadModule(VOID)
{
- HOTKEYDESC hk;
-
myCreateServiceFunction(MS_USERINFO_REFRESH, RefreshService);
HookEvent(ME_SYSTEM_PRESHUTDOWN, OnPreShutdown);
HookEvent(ME_DB_CONTACT_ADDED, OnContactAdded);
+ HOTKEYDESC hk = { 0 };
hk.cbSize = sizeof(HOTKEYDESC);
- hk.lParam = NULL;
- hk.DefHotKey = NULL;
hk.pszSection = MODNAME;
hk.pszName = "RefreshContactDetails";
hk.pszDescription = LPGEN("Refresh Contact Details");
|