diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-20 12:55:14 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-20 12:55:14 +0000 |
commit | 772c97af724e6ca4d46f6df6cf82bee4b82d0d1b (patch) | |
tree | e6ecbc9b4a23587f90a509885590f40e15634c25 /protocols/SkypeWeb | |
parent | eea151525c703a7c211bc450fc6f747ee3234d72 (diff) |
SkypeWeb: Version bump.
git-svn-id: http://svn.miranda-ng.org/main/trunk@12971 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb')
-rw-r--r-- | protocols/SkypeWeb/src/skype_chatrooms.cpp | 5 | ||||
-rw-r--r-- | protocols/SkypeWeb/src/version.h | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_chatrooms.cpp b/protocols/SkypeWeb/src/skype_chatrooms.cpp index bae0f32d60..f518dee961 100644 --- a/protocols/SkypeWeb/src/skype_chatrooms.cpp +++ b/protocols/SkypeWeb/src/skype_chatrooms.cpp @@ -129,6 +129,8 @@ int CSkypeProto::OnGroupChatEventHook(WPARAM, LPARAM lParam) case 20:
//chat_leave(id);
break;
+ case 30:
+ break;
}
break;
}
@@ -199,7 +201,8 @@ int CSkypeProto::OnGroupChatMenuHook(WPARAM, LPARAM lParam) static const struct gc_item Items[] =
{
{ LPGENT("&Invite user..."), 10, MENU_ITEM, FALSE },
- { LPGENT("&Leave chat session"), 20, MENU_ITEM, FALSE }
+ { LPGENT("&Leave chat session"), 20, MENU_ITEM, FALSE },
+ { LPGENT("&Change topic"), 30, MENU_ITEM, FALSE }
};
gcmi->nItems = SIZEOF(Items);
gcmi->Item = (gc_item*)Items;
diff --git a/protocols/SkypeWeb/src/version.h b/protocols/SkypeWeb/src/version.h index e84c003545..a28642f9ab 100644 --- a/protocols/SkypeWeb/src/version.h +++ b/protocols/SkypeWeb/src/version.h @@ -1,7 +1,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 11
#define __RELEASE_NUM 0
-#define __BUILD_NUM 1
+#define __BUILD_NUM 2
#include <stdver.h>
|