]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/stattext.cpp
Added comments
[wxWidgets.git] / src / msw / stattext.cpp
index 084a748c6cb011e7a1054f69d082783cadfc6707..d8afd05b0c1d50c97d500144d2ee7e9d540d38a4 100644 (file)
@@ -72,12 +72,12 @@ bool wxStaticText::Create(wxWindow *parent, wxWindowID id,
   if ( wxStyleHasBorder(m_windowStyle) )
     msStyle |= WS_BORDER;
 
-  m_hWnd = (WXHWND)::CreateWindowEx(MakeExtendedStyle(m_windowStyle), _T("STATIC"), (const wxChar *)label,
+  m_hWnd = (WXHWND)::CreateWindowEx(MakeExtendedStyle(m_windowStyle), T("STATIC"), (const wxChar *)label,
                          msStyle,
                          0, 0, 0, 0, (HWND) parent->GetHWND(), (HMENU)m_windowId,
                          wxGetInstance(), NULL);
 
-  wxCHECK_MSG( m_hWnd, FALSE, _T("Failed to create static ctrl") );
+  wxCHECK_MSG( m_hWnd, FALSE, T("Failed to create static ctrl") );
 
 #if wxUSE_CTL3D
 /*
@@ -103,13 +103,13 @@ wxSize wxStaticText::DoGetBestSize()
 
     wxString curLine;
     for ( const wxChar *pc = text; ; pc++ ) {
-        if ( *pc == _T('\n') || *pc == _T('\0') ) {
+        if ( *pc == T('\n') || *pc == T('\0') ) {
             GetTextExtent(curLine, &widthLine, &heightLine);
             if ( widthLine > widthTextMax )
                 widthTextMax = widthLine;
             heightTextTotal += heightLine;
 
-            if ( *pc == _T('\n') ) {
+            if ( *pc == T('\n') ) {
                curLine.Empty();
             }
             else {