[cstdstring] remove CStdString::Empty and replace with std::string::clear
[vuplus_xbmc] / xbmc / utils / ScraperUrl.cpp
index 5f95039..14dff31 100644 (file)
@@ -65,7 +65,7 @@ void CScraperUrl::Clear()
 bool CScraperUrl::Parse()
 {
   CStdString strToParse = m_xml;
-  m_xml.Empty();
+  m_xml.clear();
   return ParseString(strToParse);
 }