[WIN32] removed CStdString from RenderSystemDX.*
authorwsoltys <wiso@no.way>
Sun, 1 Dec 2013 21:43:14 +0000 (22:43 +0100)
committerwsoltys <wiso@no.way>
Sun, 1 Dec 2013 21:45:26 +0000 (22:45 +0100)
xbmc/rendering/dx/RenderSystemDX.cpp
xbmc/rendering/dx/RenderSystemDX.h

index 9991362..654c23f 100644 (file)
@@ -996,7 +996,7 @@ void CRenderSystemDX::Unregister(ID3DResource* resource)
     m_resources.erase(i);
 }
 
-CStdString CRenderSystemDX::GetErrorDescription(HRESULT hr)
+std::string CRenderSystemDX::GetErrorDescription(HRESULT hr)
 {
   return StringUtils::Format("%X - %s (%s)", hr, DXGetErrorString(hr), DXGetErrorDescription(hr));
 }
index 28851ff..197fc8f 100644 (file)
@@ -107,7 +107,7 @@ public:
   */
   void Unregister(ID3DResource *resource);
 
-  static CStdString GetErrorDescription(HRESULT hr);
+  static std::string GetErrorDescription(HRESULT hr);
 
 protected:
   bool CreateDevice();