diff options
| author | George Hazan <ghazan@miranda.im> | 2017-07-30 17:30:39 +0300 | 
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2017-07-30 17:30:39 +0300 | 
| commit | 6fad3235de6bec045fec19a7265e19e880ac84e2 (patch) | |
| tree | ea375f721c2cc7e586142ccd0298b096a7a5b31f /plugins/FavContacts/src | |
| parent | 4aab3b6bc3d66ade09b25649d389b8aef358bfbd (diff) | |
Hotkeys: code cleaning
Diffstat (limited to 'plugins/FavContacts/src')
| -rw-r--r-- | plugins/FavContacts/src/services.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/FavContacts/src/services.cpp b/plugins/FavContacts/src/services.cpp index e61459db72..d562f5e187 100644 --- a/plugins/FavContacts/src/services.cpp +++ b/plugins/FavContacts/src/services.cpp @@ -218,10 +218,10 @@ int ProcessModulesLoaded(WPARAM, LPARAM)  	/////////////////////////////////////////////////////////////////////////////////////
 -	HOTKEYDESC hotkey = { sizeof(hotkey) };
 +	HOTKEYDESC hotkey = {};
  	hotkey.pszName = "FavContacts/ShowMenu";
 -	hotkey.pszDescription = LPGEN("Show favorite contacts");
 -	hotkey.pszSection = "Contacts";
 +	hotkey.szDescription.a = LPGEN("Show favorite contacts");
 +	hotkey.szSection.a = "Contacts";
  	hotkey.pszService = MS_FAVCONTACTS_SHOWMENU_CENTERED;
  	hotkey.DefHotKey = MAKEWORD('Q', HOTKEYF_EXT);
  	Hotkey_Register(&hotkey);
  | 
