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/oauth.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'protocols/Gadu-Gadu/src/oauth.cpp') diff --git a/protocols/Gadu-Gadu/src/oauth.cpp b/protocols/Gadu-Gadu/src/oauth.cpp index 773b3ade25..19c74c0acf 100644 --- a/protocols/Gadu-Gadu/src/oauth.cpp +++ b/protocols/Gadu-Gadu/src/oauth.cpp @@ -316,15 +316,15 @@ int GGPROTO::oauth_receivetoken() nlc = resp->nlc; if (resp->resultCode == 200 && resp->dataLength > 0 && resp->pData) { 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("oauth_token"), 0); - token = node != NULL ? mir_t2a(xi.getText(node)) : NULL; + HXML node = xmlGetChildByPath(hXml, _T("oauth_token"), 0); + token = node != NULL ? mir_t2a(xmlGetText(node)) : NULL; - node = xi.getChildByPath(hXml, _T("oauth_token_secret"), 0); - token_secret = node != NULL ? mir_t2a(xi.getText(node)) : NULL; + node = xmlGetChildByPath(hXml, _T("oauth_token_secret"), 0); + token_secret = node != NULL ? mir_t2a(xmlGetText(node)) : NULL; - xi.destroyNode(hXml); + xmlDestroyNode(hXml); } mir_free(xmlAction); } @@ -385,15 +385,15 @@ int GGPROTO::oauth_receivetoken() if (resp) { if (resp->resultCode == 200 && resp->dataLength > 0 && resp->pData) { 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("oauth_token"), 0); - token = mir_t2a(xi.getText(node)); + HXML node = xmlGetChildByPath(hXml, _T("oauth_token"), 0); + token = mir_t2a(xmlGetText(node)); - node = xi.getChildByPath(hXml, _T("oauth_token_secret"), 0); - token_secret = mir_t2a(xi.getText(node)); + node = xmlGetChildByPath(hXml, _T("oauth_token_secret"), 0); + token_secret = mir_t2a(xmlGetText(node)); - xi.destroyNode(hXml); + xmlDestroyNode(hXml); } mir_free(xmlAction); } -- cgit v1.2.3