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/connection.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/connection.cpp')
-rw-r--r-- | protocols/Twitter/src/connection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Twitter/src/connection.cpp b/protocols/Twitter/src/connection.cpp index 80bdf2b14d..642ccd08c3 100644 --- a/protocols/Twitter/src/connection.cpp +++ b/protocols/Twitter/src/connection.cpp @@ -589,6 +589,7 @@ void TwitterProto::UpdateStatuses(bool pre_read, bool popups, bool tweetToMsg) if (!pre_read && popups) {
std::stringstream url;
url << std::string("https://twitter.com/") << i->username << std::string("/status/") << i->status.id;
+ SkinPlaySound("TwitterNew");
ShowContactPopup(hContact, i->status.text, new std::string(url.str()));
}
}
|