diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-22 14:34:09 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-22 14:34:09 +0300 |
commit | e32d1f001fd799cf3c21b663ce954cdf3d7109b4 (patch) | |
tree | 8b551d27daebead0d90429ddf2f163d18cbf3604 /plugins/TabSRMM | |
parent | 775290b963def8a8f4ed9ec50e86f8d3ca438c46 (diff) |
Srmm_AddIcon unbound from hLangpack
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r-- | plugins/TabSRMM/src/generic_msghandlers.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/TabSRMM/src/generic_msghandlers.cpp b/plugins/TabSRMM/src/generic_msghandlers.cpp index f5b0c07645..e2554acf5f 100644 --- a/plugins/TabSRMM/src/generic_msghandlers.cpp +++ b/plugins/TabSRMM/src/generic_msghandlers.cpp @@ -1525,13 +1525,13 @@ int SI_InitStatusIcons() StatusIconData sid = {}; sid.szModule = MSG_ICON_MODULE; sid.dwId = MSG_ICON_SOUND; // Sounds - Srmm_AddIcon(&sid); + Srmm_AddIcon(&sid, g_plugin.m_hLang); sid.dwId = MSG_ICON_UTN; - Srmm_AddIcon(&sid); + Srmm_AddIcon(&sid, g_plugin.m_hLang); sid.dwId = MSG_ICON_SESSION; - Srmm_AddIcon(&sid); + Srmm_AddIcon(&sid, g_plugin.m_hLang); HookEvent(ME_MSG_ICONSCHANGED, OnSrmmIconChanged); |