diff options
author | George Hazan <george.hazan@gmail.com> | 2016-07-26 09:20:25 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-07-26 09:20:25 +0000 |
commit | 6e53dfca72b932c4bdcd7aa02ca62bf8b2630eac (patch) | |
tree | 2e8bb660c908b54914abd562af8aafa4a486c846 /plugins/WinterSpeak/src/UserInformation.cpp | |
parent | a61c8728b379057fe7f0a0d86fe0b037598229dd (diff) |
less TCHARs:
- TCHAR is replaced with wchar_t everywhere;
- LPGENT replaced with either LPGENW or LPGEN;
- fixes for ANSI plugins that improperly used _t functions;
- TCHAR *t removed from MAllStrings;
- ptszGroup, ptszTitle & ptszTab in OPTIONSDIALOGPAGE replaced with pwsz*
git-svn-id: http://svn.miranda-ng.org/main/trunk@17133 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/WinterSpeak/src/UserInformation.cpp')
-rw-r--r-- | plugins/WinterSpeak/src/UserInformation.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/WinterSpeak/src/UserInformation.cpp b/plugins/WinterSpeak/src/UserInformation.cpp index d39ad691be..63576269e3 100644 --- a/plugins/WinterSpeak/src/UserInformation.cpp +++ b/plugins/WinterSpeak/src/UserInformation.cpp @@ -4,14 +4,14 @@ UserInformation::UserInformation() : m_status_info(), m_status_strings() {
// insert the status strings into a map for easy access
- m_status_strings[ID_STATUS_OFFLINE] = LPGENT("%u is now offline");
- m_status_strings[ID_STATUS_ONLINE] = LPGENT("%u is now online");
- m_status_strings[ID_STATUS_AWAY] = LPGENT("%u is away");
- m_status_strings[ID_STATUS_INVISIBLE] = LPGENT("%u is invisible");
- m_status_strings[ID_STATUS_NA] = LPGENT("%u is not available");
- m_status_strings[ID_STATUS_DND] = LPGENT("%u does not want to be disturbed");
- m_status_strings[ID_STATUS_OCCUPIED] = LPGENT("%u is occupied");
- m_status_strings[ID_STATUS_FREECHAT] = LPGENT("%u is free for chat");
+ m_status_strings[ID_STATUS_OFFLINE] = LPGENW("%u is now offline");
+ m_status_strings[ID_STATUS_ONLINE] = LPGENW("%u is now online");
+ m_status_strings[ID_STATUS_AWAY] = LPGENW("%u is away");
+ m_status_strings[ID_STATUS_INVISIBLE] = LPGENW("%u is invisible");
+ m_status_strings[ID_STATUS_NA] = LPGENW("%u is not available");
+ m_status_strings[ID_STATUS_DND] = LPGENW("%u does not want to be disturbed");
+ m_status_strings[ID_STATUS_OCCUPIED] = LPGENW("%u is occupied");
+ m_status_strings[ID_STATUS_FREECHAT] = LPGENW("%u is free for chat");
}
//------------------------------------------------------------------------------
|