]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/textctrl.cpp
corrected path splitting for mac relative paths
[wxWidgets.git] / src / os2 / textctrl.cpp
index 61e2be6e405df0b06f6171c56fcddb6c5c7832ec..0c762e5d8e4e1d055e1c525338eb7b4456293157 100644 (file)
@@ -320,7 +320,7 @@ void wxTextCtrl::WriteText(
   const wxString&                   rsValue
 )
 {
-    ::WinSetWindowText(GetHwnd(), rsValue.c_str());
+    ::WinSendMsg(GetHwnd(), MLM_INSERT, MPARAM((PCHAR)rsValue.c_str()), MPARAM(0));
     AdjustSpaceLimit();
 } // end of wxTextCtrl::WriteText
 
@@ -1131,7 +1131,7 @@ wxSize wxTextCtrl::DoGetBestSize() const
 
     if (m_windowStyle & wxTE_MULTILINE)
     {
-        hText *= wxMin(GetNumberOfLines(), 5);
+        hText *= wxMax(GetNumberOfLines(), 5);
     }
     //else: for single line control everything is ok
     return wxSize(wText, hText);