aboutsummaryrefslogtreecommitdiff
path: root/xbmc/epg/EpgContainer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/epg/EpgContainer.cpp')
-rw-r--r--xbmc/epg/EpgContainer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/xbmc/epg/EpgContainer.cpp b/xbmc/epg/EpgContainer.cpp
index cc9afeb250..e672ee5999 100644
--- a/xbmc/epg/EpgContainer.cpp
+++ b/xbmc/epg/EpgContainer.cpp
@@ -324,13 +324,13 @@ CEpg *CEpgContainer::GetByChannel(const CPVRChannel &channel) const
return NULL;
}
-void CEpgContainer::InsertFromDatabase(int iEpgID, const CStdString &strName, const CStdString &strScraperName)
+void CEpgContainer::InsertFromDatabase(int iEpgID, const std::string &strName, const std::string &strScraperName)
{
// table might already have been created when pvr channels were loaded
CEpg* epg = GetById(iEpgID);
if (epg)
{
- if (!epg->Name().Equals(strName) || !epg->ScraperName().Equals(strScraperName))
+ if (epg->Name() != strName || epg->ScraperName() != strScraperName)
{
// current table data differs from the info in the db
epg->SetChanged();
@@ -456,7 +456,7 @@ void CEpgContainer::ShowProgressDialog(bool bUpdating /* = true */)
}
}
-void CEpgContainer::UpdateProgressDialog(int iCurrent, int iMax, const CStdString &strText)
+void CEpgContainer::UpdateProgressDialog(int iCurrent, int iMax, const std::string &strText)
{
if (!m_progressHandle)
ShowProgressDialog();