diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-26 21:52:00 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-26 21:52:00 +0300 |
commit | d84b7beba3fd5148033b57b75c8299a2672377be (patch) | |
tree | 50b1a3ac0052aa58b7e7fd1250cf4152723d164a /protocols | |
parent | 6ae4da7c29bf777cf96b651af1a9a429d20c7b9e (diff) |
ME_SKIN2_ICONSCHANGED is totally obsoleted, thus removed
Diffstat (limited to 'protocols')
-rwxr-xr-x | protocols/JabberG/src/jabber_proto.cpp | 2 | ||||
-rw-r--r-- | protocols/Steam/src/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_proto.cpp b/protocols/JabberG/src/jabber_proto.cpp index 1cf32c5b5a..6196fc0f13 100755 --- a/protocols/JabberG/src/jabber_proto.cpp +++ b/protocols/JabberG/src/jabber_proto.cpp @@ -181,7 +181,7 @@ CJabberProto::CJabberProto(const char *aProtoName, const wchar_t *aUserName) : HookProtoEvent(ME_LANGPACK_CHANGED, &CJabberProto::OnLangChanged);
HookProtoEvent(ME_OPT_INITIALISE, &CJabberProto::OnOptionsInit);
- HookProtoEvent(ME_SKIN2_ICONSCHANGED, &CJabberProto::OnReloadIcons);
+ HookProtoEvent(ME_SKIN_ICONSCHANGED, &CJabberProto::OnReloadIcons);
HookProtoEvent(ME_DB_CONTACT_SETTINGCHANGED, &CJabberProto::OnDbSettingChanged);
m_iqManager.FillPermanentHandlers();
diff --git a/protocols/Steam/src/main.cpp b/protocols/Steam/src/main.cpp index 223b422ca0..9daabf1e60 100644 --- a/protocols/Steam/src/main.cpp +++ b/protocols/Steam/src/main.cpp @@ -38,7 +38,7 @@ int CMPlugin::Load() mir_snprintf(iconName, "%s_%s", MODULE, "gaming");
// extra statuses
- HookEvent(ME_SKIN2_ICONSCHANGED, OnReloadIcons);
+ HookEvent(ME_SKIN_ICONSCHANGED, OnReloadIcons);
hExtraXStatus = ExtraIcon_RegisterIcolib("steam_game", LPGEN("Steam game"), iconName);
CSteamProto::InitMenus();
|