From 04f4e2acfbc82946ca3def654214c08071a87359 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 20 Jun 2015 13:55:58 +0000 Subject: xml api became a set of functions git-svn-id: http://svn.miranda-ng.org/main/trunk@14288 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Gadu-Gadu/src/avatar.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'protocols/Gadu-Gadu/src/avatar.cpp') diff --git a/protocols/Gadu-Gadu/src/avatar.cpp b/protocols/Gadu-Gadu/src/avatar.cpp index f054c5e0e9..c666bd591b 100644 --- a/protocols/Gadu-Gadu/src/avatar.cpp +++ b/protocols/Gadu-Gadu/src/avatar.cpp @@ -84,20 +84,20 @@ bool GGPROTO::getAvatarFileInfo(uin_t uin, char **avatarurl, char **avatarts) //if this url returned xml data (before and after 11.2013 gg convention) TCHAR *xmlAction = mir_a2t(resp->pData); - HXML hXml = xi.parseString(xmlAction, 0, _T("result")); + HXML hXml = xmlParseString(xmlAction, 0, _T("result")); if (hXml != NULL) { - HXML node = xi.getChildByPath(hXml, _T("users/user/avatars/avatar"), 0); - const TCHAR *blank = (node != NULL) ? xi.getAttrValue(node, _T("blank")) : NULL; + HXML node = xmlGetChildByPath(hXml, _T("users/user/avatars/avatar"), 0); + const TCHAR *blank = (node != NULL) ? xmlGetAttrValue(node, _T("blank")) : NULL; if (blank != NULL && mir_tstrcmp(blank, _T("1"))) { - node = xi.getChildByPath(hXml, _T("users/user/avatars/avatar/timestamp"), 0); - *avatarts = node != NULL ? mir_t2a(xi.getText(node)) : NULL; - node = xi.getChildByPath(hXml, _T("users/user/avatars/avatar/bigavatar"), 0); //new gg convention + node = xmlGetChildByPath(hXml, _T("users/user/avatars/avatar/timestamp"), 0); + *avatarts = node != NULL ? mir_t2a(xmlGetText(node)) : NULL; + node = xmlGetChildByPath(hXml, _T("users/user/avatars/avatar/bigavatar"), 0); //new gg convention if (node == NULL){ - node = xi.getChildByPath(hXml, _T("users/user/avatars/avatar/originBigAvatar"), 0); //old gg convention + node = xmlGetChildByPath(hXml, _T("users/user/avatars/avatar/originBigAvatar"), 0); //old gg convention } - *avatarurl = node != NULL ? mir_t2a(xi.getText(node)) : NULL; + *avatarurl = node != NULL ? mir_t2a(xmlGetText(node)) : NULL; } - xi.destroyNode(hXml); + xmlDestroyNode(hXml); } mir_free(xmlAction); -- cgit v1.2.3