]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/private/dc.h
Remove SetPageTitle and GetPageTitle and make GetCurrentTitle actually return the...
[wxWidgets.git] / include / wx / msw / private / dc.h
index 85b4140f6bee38475368c53375def6c8971612e8..bd5475d062dc693d67a5c54bdaadd655b3d329b6 100644 (file)
@@ -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"));
         }
     }