diff options
Diffstat (limited to 'src/modules/clist')
-rw-r--r-- | src/modules/clist/contacts.cpp | 16 |
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];
|