diff options
| author | George Hazan <ghazan@miranda.im> | 2019-04-12 13:06:33 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2019-04-12 13:06:33 +0300 |
| commit | 2a2ae7810fe1d5dcaa4e19d57b6010a4d84a338f (patch) | |
| tree | bbf01fcfa19a938e0e58eb4fdcca038ab079669b /src | |
| parent | 8469e07dd899482905b638c248200db6a7c16191 (diff) | |
missing parameter added
Diffstat (limited to 'src')
| -rw-r--r-- | src/mir_app/src/CMPluginBase.cpp | 8 | ||||
| -rw-r--r-- | src/mir_app/src/mir_app.def | 4 | ||||
| -rw-r--r-- | src/mir_app/src/mir_app64.def | 4 |
3 files changed, 8 insertions, 8 deletions
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
|
