diff options
author | George Hazan <george.hazan@gmail.com> | 2013-05-25 19:00:17 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-05-25 19:00:17 +0000 |
commit | 2afcb5082acababf52116edababce9b87b034f23 (patch) | |
tree | 6637b8a34a122eae552e9981a3f4dd20f121b5d1 /src/modules/clist/keyboard.cpp | |
parent | 123b0284d5af09b31a362d650c7d9798f0eeb3dc (diff) |
PluginUpdater API added
git-svn-id: http://svn.miranda-ng.org/main/trunk@4820 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/clist/keyboard.cpp')
-rw-r--r-- | src/modules/clist/keyboard.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/modules/clist/keyboard.cpp b/src/modules/clist/keyboard.cpp index 93b9c1226e..a89774e254 100644 --- a/src/modules/clist/keyboard.cpp +++ b/src/modules/clist/keyboard.cpp @@ -76,16 +76,11 @@ static INT_PTR hkAllOffline(WPARAM, LPARAM) */
int InitClistHotKeys(void)
{
- HOTKEYDESC shk = {0};
-
CreateServiceFunction("CLIST/HK/SHOWHIDE", hkHideShow);
CreateServiceFunction("CLIST/HK/Opts", hkOpts);
CreateServiceFunction("CLIST/HK/Read", hkRead);
-// CreateServiceFunction("CLIST/HK/CloseMiranda", hkCloseMiranda);
-// CreateServiceFunction("CLIST/HK/RestoreStatus", hkRestoreStatus);
-// CreateServiceFunction("CLIST/HK/AllOffline", hkAllOffline);
- shk.cbSize = sizeof(shk);
+ HOTKEYDESC shk = { sizeof(shk) };
shk.dwFlags = HKD_TCHAR;
shk.ptszDescription = LPGENT("Show Hide Contact List");
shk.pszName = "ShowHide";
|