diff options
author | Robert Pösel <robyer@seznam.cz> | 2016-08-28 12:00:37 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2016-08-28 12:00:37 +0000 |
commit | 69d69946524ff6720666767240904144e51e9156 (patch) | |
tree | afab51c6165011d1a7061079cbcb0f1f0f37c0b5 /protocols/SkypeWeb/src | |
parent | e14eff0ba253de426d0cb2bb8f47ca171e199b1e (diff) |
SkypeWeb: Menu items which open some dialog should end with "..."
git-svn-id: http://svn.miranda-ng.org/main/trunk@17213 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src')
-rw-r--r-- | protocols/SkypeWeb/src/skype_chatrooms.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/protocols/SkypeWeb/src/skype_chatrooms.cpp b/protocols/SkypeWeb/src/skype_chatrooms.cpp index a254720323..dc134ea811 100644 --- a/protocols/SkypeWeb/src/skype_chatrooms.cpp +++ b/protocols/SkypeWeb/src/skype_chatrooms.cpp @@ -674,7 +674,7 @@ int CSkypeProto::OnGroupChatMenuHook(WPARAM, LPARAM lParam) {
{ LPGENW("&Invite user..."), 10, MENU_ITEM, FALSE },
{ LPGENW("&Leave chat session"), 20, MENU_ITEM, FALSE },
- { LPGENW("&Change topic"), 30, MENU_ITEM, FALSE }
+ { LPGENW("&Change topic..."), 30, MENU_ITEM, FALSE }
};
gcmi->nItems = _countof(Items);
gcmi->Item = (gc_item*)Items;
@@ -690,12 +690,12 @@ int CSkypeProto::OnGroupChatMenuHook(WPARAM, LPARAM lParam) {*/
static const struct gc_item Items[] =
{
- { LPGENW("Kick &user"), 10, MENU_ITEM },
- { NULL, 0, MENU_SEPARATOR },
- { LPGENW("Set &role"), 20, MENU_NEWPOPUP },
- { LPGENW("&Admin"), 30, MENU_POPUPITEM },
- { LPGENW("&User"), 40, MENU_POPUPITEM },
- { LPGENW("Change nick"), 50, MENU_ITEM },
+ { LPGENW("Kick &user"), 10, MENU_ITEM },
+ { NULL, 0, MENU_SEPARATOR },
+ { LPGENW("Set &role"), 20, MENU_NEWPOPUP },
+ { LPGENW("&Admin"), 30, MENU_POPUPITEM },
+ { LPGENW("&User"), 40, MENU_POPUPITEM },
+ { LPGENW("Change nick..."), 50, MENU_ITEM },
};
gcmi->nItems = _countof(Items);
gcmi->Item = (gc_item*)Items;
|