diff options
author | George Hazan <ghazan@miranda.im> | 2019-06-04 11:40:30 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-06-04 11:40:30 +0300 |
commit | 4a1f343d8684deaaa67e6ee56f0769b8bab8d6c8 (patch) | |
tree | ff6f7ecd735e12f636e6f4eabf842b064ce20327 /plugins/TabSRMM/src/chat_options.cpp | |
parent | 622ef660a9e8c08bf24d4ae876cd58cdcb97f6f7 (diff) |
tabSRMM:
- duplicate code removed;
- code cleaning
Diffstat (limited to 'plugins/TabSRMM/src/chat_options.cpp')
-rw-r--r-- | plugins/TabSRMM/src/chat_options.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/TabSRMM/src/chat_options.cpp b/plugins/TabSRMM/src/chat_options.cpp index 1ecc58c897..c15aca56c1 100644 --- a/plugins/TabSRMM/src/chat_options.cpp +++ b/plugins/TabSRMM/src/chat_options.cpp @@ -255,10 +255,10 @@ static IconItem _logicons[] = };
// add icons to the skinning module
-void Chat_AddIcons(void)
+void Chat_AddIcons(HINSTANCE hIconDll)
{
- Icon_Register(g_hIconDLL, LPGEN("Message Sessions") "/" LPGEN("Group chat windows"), _icons, _countof(_icons), 0, &g_plugin);
- Icon_Register(g_hIconDLL, LPGEN("Message Sessions") "/" LPGEN("Group chat log"), _logicons, _countof(_logicons), 0, &g_plugin);
+ Icon_Register(hIconDll, LPGEN("Message Sessions") "/" LPGEN("Group chat windows"), _icons, _countof(_icons), 0, &g_plugin);
+ Icon_Register(hIconDll, LPGEN("Message Sessions") "/" LPGEN("Group chat log"), _logicons, _countof(_logicons), 0, &g_plugin);
g_chatApi.MM_IconsChanged();
}
|