diff options
author | George Hazan <george.hazan@gmail.com> | 2016-06-05 16:28:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-06-05 16:28:41 +0000 |
commit | e5f74a7f7b50800e9b9bb3bdf694b8886cdeb3fc (patch) | |
tree | 9f16647bd606212334052917a26d2946a7a8e1e8 /protocols/Twitter/src/theme.cpp | |
parent | f71f3270c1b57b838e8761fe1dcb86d9e43e48d2 (diff) |
- fix for a bug with user's profile url;
- two sounds added for incoming messages & contacts;
- version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@16920 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter/src/theme.cpp')
-rw-r--r-- | protocols/Twitter/src/theme.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/Twitter/src/theme.cpp b/protocols/Twitter/src/theme.cpp index a8723f1115..a89548308a 100644 --- a/protocols/Twitter/src/theme.cpp +++ b/protocols/Twitter/src/theme.cpp @@ -31,6 +31,11 @@ static IconItem icons[] = { LPGEN("Visit Homepage"), "homepage", 0 },
};
+void TwitterInitSounds(void)
+{
+SkinAddNewSoundEx("TwitterNewContact", LPGEN("Twitter"), LPGEN("TwitterNewContact"));
+SkinAddNewSoundEx("TwitterNew", LPGEN("Twitter"), LPGEN("TwitterNew"));
+}
static HANDLE hIconLibItem[_countof(icons)];
// TODO: uninit
|