]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/stattext.cpp
Create(): use wxAutoNSAutoreleasePool
[wxWidgets.git] / src / mac / stattext.cpp
index 4c8b9414a478fe4b8818e681550fb5aa101ec922..1c0facdbf70d86610846d12989813d7cef848fd9 100644 (file)
@@ -186,7 +186,7 @@ wxSize wxStaticText::DoGetBestSize() const
     wxString curLine;
     for ( const wxChar *pc = m_label; ; pc++ )
     {
-        if ( *pc == wxT('\n') || *pc == wxT('\0') )
+        if ( *pc == wxT('\n') || *pc == wxT('\r') || *pc == wxT('\0') )
         {
             if ( !curLine )
             {
@@ -212,7 +212,7 @@ wxSize wxStaticText::DoGetBestSize() const
                 heightTextTotal++;  // FIXME: why is this necessary?
             }
 
-            if ( *pc == wxT('\n') ) {
+            if ( *pc == wxT('\n') || *pc == wxT('\r')) {
                curLine.Empty();
             }
             else {