From 2a2ae7810fe1d5dcaa4e19d57b6010a4d84a338f Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 12 Apr 2019 13:06:33 +0300 Subject: missing parameter added --- src/mir_app/src/CMPluginBase.cpp | 8 ++++---- src/mir_app/src/mir_app.def | 4 ++-- src/mir_app/src/mir_app64.def | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/mir_app/src/CMPluginBase.cpp b/src/mir_app/src/CMPluginBase.cpp index 2b5fe51b29..17b72e227f 100644 --- a/src/mir_app/src/CMPluginBase.cpp +++ b/src/mir_app/src/CMPluginBase.cpp @@ -279,9 +279,9 @@ void CMPluginBase::debugLogW(LPCWSTR wszFormat, ...) ///////////////////////////////////////////////////////////////////////////////////////// -HICON CMPluginBase::getIcon(int iconId) +HICON CMPluginBase::getIcon(int iconId, bool big) { - return IcoLib_GetIconByHandle(getIconHandle(iconId)); + return IcoLib_GetIconByHandle(getIconHandle(iconId), big); } HANDLE CMPluginBase::getIconHandle(int iconId) @@ -291,9 +291,9 @@ HANDLE CMPluginBase::getIconHandle(int iconId) return m_arIcons.find(p); } -void CMPluginBase::releaseIcon(int iconId) +void CMPluginBase::releaseIcon(int iconId, bool big) { - IcoLib_ReleaseIcon(getIcon(iconId)); + IcoLib_ReleaseIcon(getIcon(iconId), big); } ///////////////////////////////////////////////////////////////////////////////////////// diff --git a/src/mir_app/src/mir_app.def b/src/mir_app/src/mir_app.def index 2754e8aa53..ffce4e29f0 100644 --- a/src/mir_app/src/mir_app.def +++ b/src/mir_app/src/mir_app.def @@ -676,6 +676,6 @@ Popup_Change @765 Skin_GetProtoIcon @766 Srmm_SetIconFlags @767 ?addIcolib@CMPluginBase@@QAEXPAX@Z @768 NONAME -?getIcon@CMPluginBase@@QAEPAUHICON__@@H@Z @769 NONAME +?getIcon@CMPluginBase@@QAEPAUHICON__@@H_N@Z @769 NONAME ?getIconHandle@CMPluginBase@@QAEPAXH@Z @770 NONAME -?releaseIcon@CMPluginBase@@QAEXH@Z @771 NONAME +?releaseIcon@CMPluginBase@@QAEXH_N@Z @771 NONAME diff --git a/src/mir_app/src/mir_app64.def b/src/mir_app/src/mir_app64.def index dbb8284250..1c3b8e9832 100644 --- a/src/mir_app/src/mir_app64.def +++ b/src/mir_app/src/mir_app64.def @@ -676,6 +676,6 @@ Popup_Change @765 Skin_GetProtoIcon @766 Srmm_SetIconFlags @767 ?addIcolib@CMPluginBase@@QEAAXPEAX@Z @768 NONAME -?getIcon@CMPluginBase@@QEAAPEAUHICON__@@H@Z @769 NONAME +?getIcon@CMPluginBase@@QEAAPEAUHICON__@@H_N@Z @769 NONAME ?getIconHandle@CMPluginBase@@QEAAPEAXH@Z @770 NONAME -?releaseIcon@CMPluginBase@@QEAAXH@Z @771 NONAME +?releaseIcon@CMPluginBase@@QEAAXH_N@Z @771 NONAME -- cgit v1.2.3