diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-05 21:16:04 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-05 21:16:11 +0300 |
commit | 94c711953d71b21e4cc4c950dec921b253ae0d54 (patch) | |
tree | 1b627434871ae469cce098fc69a881291e249949 /protocols/JabberG/src/jabber_caps.h | |
parent | 40478d50b60d8c2e0711b3b0691c80be6b2da290 (diff) |
Jabber: code cleaning & simplification
Diffstat (limited to 'protocols/JabberG/src/jabber_caps.h')
-rwxr-xr-x | protocols/JabberG/src/jabber_caps.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_caps.h b/protocols/JabberG/src/jabber_caps.h index fe69024b21..93c12a2d2e 100755 --- a/protocols/JabberG/src/jabber_caps.h +++ b/protocols/JabberG/src/jabber_caps.h @@ -304,14 +304,14 @@ public: struct JabberFeatCapPair
{
- LPCTSTR szFeature;
+ const wchar_t *szFeature;
JabberCapsBits jcbCap;
- LPCTSTR tszDescription;
+ const wchar_t *tszDescription;
};
struct JabberFeatCapPairExt
{
- LPCTSTR szFeature;
+ const wchar_t *szFeature;
JabberCapsBits jcbCap;
LPCSTR szService;
|