diff options
author | George Hazan <ghazan@miranda.im> | 2018-09-03 18:59:35 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-09-03 18:59:35 +0300 |
commit | 728516f4fed1b694f46c326bda5a596e7ec7727a (patch) | |
tree | 11b7951358ff47639b2de1b9565057d31eb45558 /plugins/IEView | |
parent | c4cfca1ad26645197315962555a1ca473845c3bc (diff) |
fixes #1563 (IEView: icon section name)
Diffstat (limited to 'plugins/IEView')
-rw-r--r-- | plugins/IEView/src/ieview_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/IEView/src/ieview_main.cpp b/plugins/IEView/src/ieview_main.cpp index 885c89815a..7da866604a 100644 --- a/plugins/IEView/src/ieview_main.cpp +++ b/plugins/IEView/src/ieview_main.cpp @@ -75,7 +75,7 @@ int CMPlugin::Load() CreateServiceFunction(MS_IEVIEW_NAVIGATE, HandleIENavigate);
CreateServiceFunction("IEView/ReloadOptions", ReloadOptions);
hHookOptionsChanged = CreateHookableEvent(ME_IEVIEW_OPTIONSCHANGED);
- g_plugin.registerIcon(ieviewModuleName, iconList, ieviewModuleName);
+ g_plugin.registerIcon("IEView", iconList, ieviewModuleName);
return 0;
}
|