From 5db3eb660f41b76903abbf3892d26defafe65b4f Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Wed, 25 Jun 2014 23:56:05 +0200 Subject: [PATCH] [stdstring] get rid of CStdString in powermanagement/ --- xbmc/powermanagement/linux/UPowerSyscall.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xbmc/powermanagement/linux/UPowerSyscall.h b/xbmc/powermanagement/linux/UPowerSyscall.h index a314b1ac61633..d4fecd5a44919 100644 --- a/xbmc/powermanagement/linux/UPowerSyscall.h +++ b/xbmc/powermanagement/linux/UPowerSyscall.h @@ -23,9 +23,9 @@ #ifdef HAS_DBUS #include "powermanagement/IPowerSyscall.h" #include "DBusUtil.h" -#include "utils/StdString.h" #include +#include class CUPowerSource { @@ -38,7 +38,7 @@ class CUPowerSource double BatteryLevel(); private: - CStdString m_powerSource; + std::string m_powerSource; bool m_isRechargeable; double m_batteryLevel; };