diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-04 20:45:33 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-04 20:45:33 +0000 |
commit | 1417f9dd4b0203710cf0119554084ad3d910e33c (patch) | |
tree | c35b981343ac7e08648a39100dfe857f81f8e0ee /protocols/MSN | |
parent | 720aaa0afb5bcc7a759ace93eb4e67da71563553 (diff) |
andalso MSN chats
git-svn-id: http://svn.miranda-ng.org/main/trunk@309 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN')
-rw-r--r-- | protocols/MSN/msn_chat.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/protocols/MSN/msn_chat.cpp b/protocols/MSN/msn_chat.cpp index 7f91b381ad..1fc8fffbf3 100644 --- a/protocols/MSN/msn_chat.cpp +++ b/protocols/MSN/msn_chat.cpp @@ -451,8 +451,8 @@ int CMsnProto::MSN_GCMenuHook(WPARAM, LPARAM lParam) {
static const struct gc_item Items[] =
{
- { TranslateT("&Invite user..."), 10, MENU_ITEM, FALSE },
- { TranslateT("&Leave chat session"), 20, MENU_ITEM, FALSE }
+ { LPGENT("&Invite user..."), 10, MENU_ITEM, FALSE },
+ { LPGENT("&Leave chat session"), 20, MENU_ITEM, FALSE }
};
gcmi->nItems = SIZEOF(Items);
gcmi->Item = (gc_item*)Items;
@@ -464,10 +464,10 @@ int CMsnProto::MSN_GCMenuHook(WPARAM, LPARAM lParam) {
static const struct gc_item Items[] =
{
- { TranslateT("User &details"), 10, MENU_ITEM, FALSE },
- { TranslateT("User &history"), 20, MENU_ITEM, FALSE },
+ { LPGENT("User &details"), 10, MENU_ITEM, FALSE },
+ { LPGENT("User &history"), 20, MENU_ITEM, FALSE },
{ _T(""), 100, MENU_SEPARATOR, FALSE },
- { TranslateT("&Leave chat session"), 110, MENU_ITEM, FALSE }
+ { LPGENT("&Leave chat session"), 110, MENU_ITEM, FALSE }
};
gcmi->nItems = SIZEOF(Items);
gcmi->Item = (gc_item*)Items;
@@ -476,8 +476,8 @@ int CMsnProto::MSN_GCMenuHook(WPARAM, LPARAM lParam) {
static const struct gc_item Items[] =
{
- { TranslateT("User &details"), 10, MENU_ITEM, FALSE },
- { TranslateT("User &history"), 20, MENU_ITEM, FALSE }
+ { LPGENT("User &details"), 10, MENU_ITEM, FALSE },
+ { LPGENT("User &history"), 20, MENU_ITEM, FALSE }
};
gcmi->nItems = SIZEOF(Items);
gcmi->Item = (gc_item*)Items;
|