summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_disco.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2016-07-25 10:31:04 +0000
committerGeorge Hazan <george.hazan@gmail.com>2016-07-25 10:31:04 +0000
commit8ae3679aa1339ce9abee53adb69902bd6b7513dc (patch)
tree94ef8927e12043ed6dcc15e1e640d68a8add520e /protocols/JabberG/src/jabber_disco.h
parent1e273e28d89b5838e3d0f0cafac9676577cb71ce (diff)
hello, Unix.
phase 1: removing _T() git-svn-id: http://svn.miranda-ng.org/main/trunk@17127 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_disco.h')
-rw-r--r--protocols/JabberG/src/jabber_disco.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/protocols/JabberG/src/jabber_disco.h b/protocols/JabberG/src/jabber_disco.h
index 55422f9358..9c327a60f4 100644
--- a/protocols/JabberG/src/jabber_disco.h
+++ b/protocols/JabberG/src/jabber_disco.h
@@ -349,23 +349,23 @@ public:
{
CMString tszTmp;
- tszTmp.AppendFormat(_T("Jid: %s\r\n"), m_szJid);
+ tszTmp.AppendFormat(L"Jid: %s\r\n", m_szJid);
if (m_szNode)
- tszTmp.AppendFormat(_T("%s: %s\r\n"), TranslateT("Node"), m_szNode);
+ tszTmp.AppendFormat(L"%s: %s\r\n", TranslateT("Node"), m_szNode);
if (m_pIdentities) {
- tszTmp.AppendFormat(_T("\r\n%s:\r\n"), TranslateT("Identities"));
+ tszTmp.AppendFormat(L"\r\n%s:\r\n", TranslateT("Identities"));
CJabberSDIdentity *pIdentity = m_pIdentities;
while (pIdentity) {
if (pIdentity->GetName())
- tszTmp.AppendFormat(_T(" %c %s (%s: %s, %s: %s)\r\n"),
+ tszTmp.AppendFormat(L" %c %s (%s: %s, %s: %s)\r\n",
CHR_BULLET, pIdentity->GetName(),
TranslateT("category"), pIdentity->GetCategory(),
TranslateT("type"), pIdentity->GetType());
else
- tszTmp.AppendFormat(_T(" %c %s: %s, %s: %s\r\n"),
+ tszTmp.AppendFormat(L" %c %s: %s, %s: %s\r\n",
CHR_BULLET,
TranslateT("Category"), pIdentity->GetCategory(),
TranslateT("Type"), pIdentity->GetType());
@@ -375,17 +375,17 @@ public:
}
if (m_pFeatures) {
- tszTmp.AppendFormat(_T("\r\n%s:\r\n"), TranslateT("Supported features"));
+ tszTmp.AppendFormat(L"\r\n%s:\r\n", TranslateT("Supported features"));
for (CJabberSDFeature *pFeature = m_pFeatures; pFeature; pFeature = pFeature->GetNext())
- tszTmp.AppendFormat(_T(" %c %s\r\n"), CHR_BULLET, pFeature->GetVar());
+ tszTmp.AppendFormat(L" %c %s\r\n", CHR_BULLET, pFeature->GetVar());
}
if (m_szInfoError)
- tszTmp.AppendFormat(_T("\r\n%s: %s\r\n"), TranslateT("Info request error"), m_szInfoError);
+ tszTmp.AppendFormat(L"\r\n%s: %s\r\n", TranslateT("Info request error"), m_szInfoError);
if (m_szItemsError)
- tszTmp.AppendFormat(_T("\r\n%s: %s\r\n"), TranslateT("Items request error"), m_szItemsError);
+ tszTmp.AppendFormat(L"\r\n%s: %s\r\n", TranslateT("Items request error"), m_szItemsError);
tszTmp.TrimRight();
_tcsncpy_s(szText, nMaxLength, tszTmp, _TRUNCATE);