summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_caps.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/JabberG/src/jabber_caps.cpp')
-rw-r--r--protocols/JabberG/src/jabber_caps.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/protocols/JabberG/src/jabber_caps.cpp b/protocols/JabberG/src/jabber_caps.cpp
index 46210b8fb8..4f7e1615a3 100644
--- a/protocols/JabberG/src/jabber_caps.cpp
+++ b/protocols/JabberG/src/jabber_caps.cpp
@@ -129,19 +129,6 @@ void CJabberProto::OnIqResultCapsDiscoInfoSI(HXML, CJabberIqInfo* pInfo)
szTmp = XPath(xform, _T("field[@var='x-miranda-core-version']/value"));
if (szTmp)
r->pSoftwareInfo->tszXMirandaCoreVersion = mir_tstrdup(szTmp);
- szTmp = XPath(xform, _T("field[@var='x-miranda-core-is-unicode']/value"));
- if ( !szTmp) // old deprecated format
- szTmp = XPath(xform, _T("field[@var='x-miranda-is-unicode']/value"));
- if (szTmp && _ttoi(szTmp))
- r->pSoftwareInfo->bXMirandaIsUnicode = TRUE;
- szTmp = XPath(xform, _T("field[@var='x-miranda-core-is-alpha']/value"));
- if ( !szTmp) // old deprecated format
- szTmp = XPath(xform, _T("field[@var='x-miranda-is-alpha']/value"));
- if (szTmp && _ttoi(szTmp))
- r->pSoftwareInfo->bXMirandaIsAlpha = TRUE;
- szTmp = XPath(xform, _T("field[@var='x-miranda-jabber-is-debug']/value"));
- if (szTmp && _ttoi(szTmp))
- r->pSoftwareInfo->bXMirandaIsDebug = TRUE;
}
JabberUserInfoUpdate(pInfo->GetHContact());
}