diff options
| author | George Hazan <ghazan@miranda.im> | 2021-12-26 15:13:30 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2021-12-26 15:13:30 +0300 |
| commit | d7e53c4d5a748d5ef8c934e90dc59ff23c667420 (patch) | |
| tree | 2b0c16de953e182321a0314b6ce3b909f428731f /plugins/UserInfoEx/src/ex_import | |
| parent | 129687d805025b4e292174ffb3d224a55baf24d2 (diff) | |
WCHAR -> wchar_t
Diffstat (limited to 'plugins/UserInfoEx/src/ex_import')
| -rw-r--r-- | plugins/UserInfoEx/src/ex_import/svc_ExImVCF.cpp | 2 | ||||
| -rw-r--r-- | plugins/UserInfoEx/src/ex_import/svc_ExImVCF.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UserInfoEx/src/ex_import/svc_ExImVCF.cpp b/plugins/UserInfoEx/src/ex_import/svc_ExImVCF.cpp index 6733e4940d..17cb4a180f 100644 --- a/plugins/UserInfoEx/src/ex_import/svc_ExImVCF.cpp +++ b/plugins/UserInfoEx/src/ex_import/svc_ExImVCF.cpp @@ -163,7 +163,7 @@ size_t CLineBuffer::operator + (const CHAR *szVal) * return: length of the string, added
**/
-size_t CLineBuffer::operator + (const WCHAR *wszVal)
+size_t CLineBuffer::operator + (const wchar_t *wszVal)
{
if (wszVal) {
CHAR *szVal = mir_u2a(wszVal);
diff --git a/plugins/UserInfoEx/src/ex_import/svc_ExImVCF.h b/plugins/UserInfoEx/src/ex_import/svc_ExImVCF.h index 13822c3507..cea4cc9067 100644 --- a/plugins/UserInfoEx/src/ex_import/svc_ExImVCF.h +++ b/plugins/UserInfoEx/src/ex_import/svc_ExImVCF.h @@ -38,7 +38,7 @@ public: size_t operator=(const CHAR *szVal);
size_t operator + (const CHAR *szVal);
- size_t operator + (const WCHAR *wszVal);
+ size_t operator + (const wchar_t *wszVal);
size_t operator + (const CHAR cVal);
size_t operator + (const BYTE bVal);
size_t operator + (const SHORT sVal);
|
