diff options
author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-10-28 05:22:20 +0000 |
---|---|---|
committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-10-28 05:22:20 +0000 |
commit | 8934ae2caa8cdc2cc70baf0047a8812b0538963f (patch) | |
tree | aaa1f29c55fdc0a1b74b0108e6e2007eae8f04ae /protocols/VKontakte/src/vk_proto.cpp | |
parent | 340386821c6b9e3c2e7b2cde0ec9e082efebcaec (diff) |
VKontakte:
add ‘Message for return to chat’ option
add ‘Use non-standard popups for news and event notifications’ option
git-svn-id: http://svn.miranda-ng.org/main/trunk@15628 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/VKontakte/src/vk_proto.cpp')
-rw-r--r-- | protocols/VKontakte/src/vk_proto.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/VKontakte/src/vk_proto.cpp b/protocols/VKontakte/src/vk_proto.cpp index 011922b230..0d213c09cc 100644 --- a/protocols/VKontakte/src/vk_proto.cpp +++ b/protocols/VKontakte/src/vk_proto.cpp @@ -114,6 +114,8 @@ CVkProto::CVkProto(const char *szModuleName, const TCHAR *ptszUserName) : m_bNotificationFilterReposts = getBool("NotificationFilterReposts", true);
m_bNotificationFilterMentions = getBool("NotificationFilterMentions", true);
m_bNotificationFilterInvites = getBool("NotificationFilterInvites", true);
+
+ m_bUseNonStandardNotifications = getBool("UseNonStandardNotifications", false);
m_bUseNonStandardUrlEncode = getBool("UseNonStandardUrlEncode", true);
m_iInvisibleInterval = getDword("InvisibleInterval", 10);
@@ -129,6 +131,10 @@ CVkProto::CVkProto(const char *szModuleName, const TCHAR *ptszUserName) : m_bNeedSendOnline = false;
delSetting("InviteGroupIds");
+ m_ReturnChatMessage = getTStringA("ReturnChatMessage");
+ if (m_ReturnChatMessage == NULL)
+ m_ReturnChatMessage = TranslateT("I'm back");
+
// Set all contacts offline -- in case we crashed
SetAllContactStatuses(ID_STATUS_OFFLINE);
{
|