X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d8c89c487d47c0f5a9c4a3cfe2010f04d54939f5..0ecd03525b34edba886ca83ff724265cd912dbbd:/include/wx/msw/private/dc.h

diff --git a/include/wx/msw/private/dc.h b/include/wx/msw/private/dc.h
index 85b4140f6b..bd5475d062 100644
--- a/include/wx/msw/private/dc.h
+++ b/include/wx/msw/private/dc.h
@@ -1,5 +1,5 @@
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        msw/private/dc.h
+// Name:        wx/msw/private/dc.h
 // Purpose:     private wxMSW helpers for working with HDCs
 // Author:      Vadim Zeitlin
 // Created:     2009-06-16 (extracted from src/msw/dc.cpp)
@@ -72,7 +72,7 @@ protected:
             m_oldColFg = ::SetTextColor(m_hdc, colFg);
             if ( m_oldColFg == CLR_INVALID )
             {
-                wxLogLastError(_T("SetTextColor"));
+                wxLogLastError(wxT("SetTextColor"));
             }
         }
         else
@@ -85,7 +85,7 @@ protected:
             m_oldColBg = ::SetBkColor(m_hdc, colBg);
             if ( m_oldColBg == CLR_INVALID )
             {
-                wxLogLastError(_T("SetBkColor"));
+                wxLogLastError(wxT("SetBkColor"));
             }
         }
         else
@@ -131,7 +131,7 @@ protected:
                                         : OPAQUE);
         if ( !m_oldMode )
         {
-            wxLogLastError(_T("SetBkMode"));
+            wxLogLastError(wxT("SetBkMode"));
         }
     }