]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/statline.cpp
added wxLog::Suspend/Resume and wxYield() uses them now so that it won't flush
[wxWidgets.git] / src / msw / statline.cpp
index 23318390bbdbdd99ace694e86d93799160d7f418..75bc183dc88ea4994d476f5491bba0a5ad9bd239 100644 (file)
@@ -64,8 +64,8 @@ bool wxStaticLine::Create( wxWindow *parent,
 
     m_hWnd = (WXHWND)::CreateWindow
                        (
-                        T("STATIC"),
-                        T(""),
+                        wxT("STATIC"),
+                        wxT(""),
                         WS_VISIBLE | WS_CHILD |
                         SS_GRAYRECT | SS_SUNKEN, // | SS_ETCHEDFRAME,
                         pos.x, pos.y, sizeReal.x, sizeReal.y,
@@ -78,7 +78,7 @@ bool wxStaticLine::Create( wxWindow *parent,
     if ( !m_hWnd )
     {
 #ifdef __WXDEBUG__        
-        wxLogDebug(T("Failed to create static control"));
+        wxLogDebug(wxT("Failed to create static control"));
 #endif
         return FALSE;
     }