diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-20 15:51:02 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-20 15:51:02 +0300 |
commit | 495c51c74e7d1595c882ae31becb7ab5b4093a08 (patch) | |
tree | 31afae70890e524bd14d0a8f38849a9d18128db3 /include/m_genmenu.h | |
parent | 852b327946b004dc233a6fff4ac523c5ed8b3b45 (diff) |
let's avoid identifier 'hLangpack' wherever possible
Diffstat (limited to 'include/m_genmenu.h')
-rw-r--r-- | include/m_genmenu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/m_genmenu.h b/include/m_genmenu.h index 33a56e2daa..8fa4ef0728 100644 --- a/include/m_genmenu.h +++ b/include/m_genmenu.h @@ -46,7 +46,7 @@ struct TMO_MenuItem HICON hIcon;
HANDLE hIcolibItem;
};
- int hLangpack;
+ int langId;
MUUID uid;
};
@@ -64,7 +64,7 @@ struct CMenuItem : public TMO_MenuItem CMenuItem()
{
memset(this, 0, sizeof(CMenuItem));
- this->hLangpack = ::hLangpack;
+ this->langId = ::hLangpack;
}
};
#endif
@@ -260,7 +260,7 @@ EXTERN_C MIR_APP_DLL(HGENMENU) Menu_GetProtocolRoot(PROTO_INTERFACE *pThis); /////////////////////////////////////////////////////////////////////////////////////////
// kills all menu items & submenus that belong to the hLangpack given
-EXTERN_C MIR_APP_DLL(void) KillModuleMenus(int hLangpack);
+EXTERN_C MIR_APP_DLL(void) KillModuleMenus(int langId);
#endif // M_GENMENU_H__
|