From 01d131efd5d40016f07d51c0a0e9451204aa6dc8 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 21 Sep 2013 17:21:32 +0000 Subject: "two for the price of one" variables' schema removed git-svn-id: http://svn.miranda-ng.org/main/trunk@6163 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/JabberG/src/jabber_thread.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'protocols/JabberG/src/jabber_thread.cpp') diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp index 7c880d01c9..1f68a2eee7 100644 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -1813,8 +1813,8 @@ void CJabberProto::OnIqResultVersion(HXML /*node*/, CJabberIqInfo *pInfo) r->m_dwVersionRequestTime = -1; r->m_tszSoftware = NULL; - r->m_tszVersion = NULL; - r->m_tszSystem = NULL; + r->m_tszSoftwareVersion = NULL; + r->m_tszOs = NULL; HXML queryNode = pInfo->GetChildNode(); @@ -1823,9 +1823,9 @@ void CJabberProto::OnIqResultVersion(HXML /*node*/, CJabberIqInfo *pInfo) if ((n = xmlGetChild(queryNode , "name")) != NULL && xmlGetText(n)) r->m_tszSoftware = mir_tstrdup(xmlGetText(n)); if ((n = xmlGetChild(queryNode , "version")) != NULL && xmlGetText(n)) - r->m_tszVersion = mir_tstrdup(xmlGetText(n)); + r->m_tszSoftwareVersion = mir_tstrdup(xmlGetText(n)); if ((n = xmlGetChild(queryNode , "os")) != NULL && xmlGetText(n)) - r->m_tszSystem = mir_tstrdup(xmlGetText(n)); + r->m_tszOs = mir_tstrdup(xmlGetText(n)); } GetResourceCapabilites(pInfo->GetFrom(), TRUE); -- cgit v1.2.3