aboutsummaryrefslogtreecommitdiff
path: root/xbmc/windows/GUIWindowDebugInfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/windows/GUIWindowDebugInfo.cpp')
-rw-r--r--xbmc/windows/GUIWindowDebugInfo.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/xbmc/windows/GUIWindowDebugInfo.cpp b/xbmc/windows/GUIWindowDebugInfo.cpp
index 47d7cdddcb..a9e1b79350 100644
--- a/xbmc/windows/GUIWindowDebugInfo.cpp
+++ b/xbmc/windows/GUIWindowDebugInfo.cpp
@@ -96,14 +96,14 @@ void CGUIWindowDebugInfo::Process(unsigned int currentTime, CDirtyRegionList &di
if (!m_layout)
return;
- CStdString info;
+ std::string info;
if (LOG_LEVEL_DEBUG_FREEMEM <= g_advancedSettings.m_logLevel)
{
MEMORYSTATUSEX stat;
stat.dwLength = sizeof(MEMORYSTATUSEX);
GlobalMemoryStatusEx(&stat);
- CStdString profiling = CGUIControlProfiler::IsRunning() ? " (profiling)" : "";
- CStdString strCores = g_cpuInfo.GetCoresUsageString();
+ std::string profiling = CGUIControlProfiler::IsRunning() ? " (profiling)" : "";
+ std::string strCores = g_cpuInfo.GetCoresUsageString();
std::string lcAppName = CCompileInfo::GetAppName();
StringUtils::ToLower(lcAppName);
#if !defined(TARGET_POSIX)
@@ -130,9 +130,9 @@ void CGUIWindowDebugInfo::Process(unsigned int currentTime, CDirtyRegionList &di
point = CPoint(pointer->GetXPosition(), pointer->GetYPosition());
if (window)
{
- CStdString windowName = CButtonTranslator::TranslateWindow(window->GetID());
+ std::string windowName = CButtonTranslator::TranslateWindow(window->GetID());
if (!windowName.empty())
- windowName += " (" + CStdString(window->GetProperty("xmlfile").asString()) + ")";
+ windowName += " (" + std::string(window->GetProperty("xmlfile").asString()) + ")";
else
windowName = window->GetProperty("xmlfile").asString();
info += "Window: " + windowName + " ";