]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/tipwin.cpp
Define wxGraphicsRenderer::GetDefaultRenderer() for all non-{MSW,Mac} ports.
[wxWidgets.git] / src / generic / tipwin.cpp
index 8238cd83c411427a1e5e36ad78e91f39784328ad..dfc01cff0d88fbf290807951018c188592f49e75 100644 (file)
@@ -267,7 +267,7 @@ void wxTipWindowView::Adjust(const wxString& text, wxCoord maxLength)
     bool breakLine = false;
     for ( const wxChar *p = text.c_str(); ; p++ )
     {
     bool breakLine = false;
     for ( const wxChar *p = text.c_str(); ; p++ )
     {
-        if ( *p == _T('\n') || *p == _T('\0') )
+        if ( *p == wxT('\n') || *p == wxT('\0') )
         {
             dc.GetTextExtent(current, &width, &height);
             if ( width > widthMax )
         {
             dc.GetTextExtent(current, &width, &height);
             if ( width > widthMax )
@@ -287,7 +287,7 @@ void wxTipWindowView::Adjust(const wxString& text, wxCoord maxLength)
             current.clear();
             breakLine = false;
         }
             current.clear();
             breakLine = false;
         }
-        else if ( breakLine && (*p == _T(' ') || *p == _T('\t')) )
+        else if ( breakLine && (*p == wxT(' ') || *p == wxT('\t')) )
         {
             // word boundary - break the line here
             m_parent->m_textLines.Add(current);
         {
             // word boundary - break the line here
             m_parent->m_textLines.Add(current);