summaryrefslogtreecommitdiff
path: root/src/modules/clist
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2013-01-23 08:45:48 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2013-01-23 08:45:48 +0000
commit8ac515c724e2d0eb4e15d610710a0d5aa13ad7c0 (patch)
treeac397c427e7fb31fd67e8ad374b61984cc2cbd58 /src/modules/clist
parentc7d408a2205e91b3f192130b72ee28b66180b3d0 (diff)
- Another portion of _T replacement when it's not needed (from person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3241 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/clist')
-rw-r--r--src/modules/clist/contacts.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/clist/contacts.cpp b/src/modules/clist/contacts.cpp
index 36adf7ed34..3382681afc 100644
--- a/src/modules/clist/contacts.cpp
+++ b/src/modules/clist/contacts.cpp
@@ -21,14 +21,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define NAMEORDERCOUNT 8
static TCHAR* nameOrderDescr[ NAMEORDERCOUNT ] =
{
- _T("My custom name (not moveable)"),
- _T("Nick"),
- _T("FirstName"),
- _T("E-mail"),
- _T("LastName"),
- _T("Username"),
- _T("FirstName LastName"),
- _T("'(Unknown Contact)' (not moveable)")
+ LPGENT("My custom name (not moveable)"),
+ LPGENT("Nick"),
+ LPGENT("FirstName"),
+ LPGENT("E-mail"),
+ LPGENT("LastName"),
+ LPGENT("Username"),
+ LPGENT("FirstName LastName"),
+ LPGENT("'(Unknown Contact)' (not moveable)")
};
BYTE nameOrder[NAMEORDERCOUNT];