aboutsummaryrefslogtreecommitdiff
path: root/guilib/XMLUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'guilib/XMLUtils.cpp')
-rw-r--r--guilib/XMLUtils.cpp4
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;
}