summaryrefslogtreecommitdiff
path: root/protocols/FacebookRM
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-05-20 00:17:30 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-05-20 00:17:30 +0300
commit7deea6cec5d2173f66d4c2dd75ca0b633b887bc7 (patch)
tree8e95a2e5a707ef578c2f070b997156fcda6f088c /protocols/FacebookRM
parent15051a110d2575c2baa9a3b358977000c876abd9 (diff)
sounds packed into CMPlugin (reduces usage of hLangpack)
Diffstat (limited to 'protocols/FacebookRM')
-rw-r--r--protocols/FacebookRM/src/proto.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/protocols/FacebookRM/src/proto.cpp b/protocols/FacebookRM/src/proto.cpp
index e1c7f3764a..64127caef8 100644
--- a/protocols/FacebookRM/src/proto.cpp
+++ b/protocols/FacebookRM/src/proto.cpp
@@ -1035,12 +1035,12 @@ void FacebookProto::InitHotkeys()
*/
void FacebookProto::InitSounds()
{
- Skin_AddSound("Notification", m_tszUserName, LPGENW("Notification"));
- Skin_AddSound("NewsFeed", m_tszUserName, LPGENW("Newsfeed event"));
- Skin_AddSound("OtherEvent", m_tszUserName, LPGENW("Other event"));
- Skin_AddSound("Friendship", m_tszUserName, LPGENW("Friendship event"));
- Skin_AddSound("Ticker", m_tszUserName, LPGENW("Ticker event"));
- Skin_AddSound("Memories", m_tszUserName, LPGENW("Memories"));
+ g_plugin.addSound("Notification", m_tszUserName, LPGENW("Notification"));
+ g_plugin.addSound("NewsFeed", m_tszUserName, LPGENW("Newsfeed event"));
+ g_plugin.addSound("OtherEvent", m_tszUserName, LPGENW("Other event"));
+ g_plugin.addSound("Friendship", m_tszUserName, LPGENW("Friendship event"));
+ g_plugin.addSound("Ticker", m_tszUserName, LPGENW("Ticker event"));
+ g_plugin.addSound("Memories", m_tszUserName, LPGENW("Memories"));
}
/**