diff options
author | spiff_ <spiff_@svn> | 2010-01-14 02:18:48 +0000 |
---|---|---|
committer | spiff_ <spiff_@svn> | 2010-01-14 02:18:48 +0000 |
commit | c0399c9df1a780ce7d473cf98f084dd078f003c6 (patch) | |
tree | cd24f554f5d408d855f19d0968e5d286f64ea83f /guilib | |
parent | 3f8e56f1cb5255726c261298f0cb7e63d755ad28 (diff) |
changed. rename CUtil::UrlDecode to CUtil::URLDecode for sanity
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@26781 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib')
-rw-r--r-- | guilib/XMLUtils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guilib/XMLUtils.cpp b/guilib/XMLUtils.cpp index 05507c9d55..2c0894bad9 100644 --- a/guilib/XMLUtils.cpp +++ b/guilib/XMLUtils.cpp @@ -116,7 +116,7 @@ bool XMLUtils::GetString(const TiXmlNode* pRootNode, const char* strTag, CStdStr { strStringValue = pNode->Value(); if (encoded && strcasecmp(encoded,"yes") == 0) - CUtil::UrlDecode(strStringValue); + CUtil::URLDecode(strStringValue); return true; } strStringValue.Empty(); @@ -192,7 +192,7 @@ bool XMLUtils::GetPath(const TiXmlNode* pRootNode, const char* strTag, CStdStrin { strStringValue = pNode->Value(); if (encoded && strcasecmp(encoded,"yes") == 0) - CUtil::UrlDecode(strStringValue); + CUtil::URLDecode(strStringValue); strStringValue = CSpecialProtocol::ReplaceOldPath(strStringValue, pathVersion); return true; } |