diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-01-31 16:57:06 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-01-31 16:57:06 +0000 |
commit | a7c9f65f67ab3928e38420cec598d51edb113d4f (patch) | |
tree | a21546b79504b5b43f8d3ee0de1c13c076857588 | |
parent | 3bc55508425808e799b13a47b2cf930bc1d0e474 (diff) |
minor text change to simplify translation
git-svn-id: http://svn.miranda-ng.org/main/trunk@7974 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | src/modules/chat/clist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/chat/clist.cpp b/src/modules/chat/clist.cpp index 503480e582..90d507a39f 100644 --- a/src/modules/chat/clist.cpp +++ b/src/modules/chat/clist.cpp @@ -166,7 +166,7 @@ INT_PTR LeaveChat(WPARAM wParam, LPARAM lParam) return 0;
}
-int PrebuildContactMenu(WPARAM wParam, LPARAM lParam)
+int PrebuildContactMenu(WPARAM wParam, LPARAM)
{
HANDLE hContact = (HANDLE)wParam;
if (hContact == NULL)
@@ -182,9 +182,9 @@ int PrebuildContactMenu(WPARAM wParam, LPARAM lParam) CLISTMENUITEM mi = { sizeof(mi) };
mi.flags = CMIM_NAME;
if (db_get_w(hContact, szProto, "Status", 0) == ID_STATUS_OFFLINE)
- mi.pszName = (char*)LPGEN("Join chat");
+ mi.pszName = LPGEN("&Join chat");
else
- mi.pszName = (char*)LPGEN("Open chat window");
+ mi.pszName = LPGEN("&Open chat window");
Menu_ModifyItem(hJoinMenuItem, &mi);
bEnabled = true;
}
|