fix bug with univ creating textctrl
authorChris Elliott <biol75@york.ac.uk>
Sun, 20 Jun 2004 13:11:37 +0000 (13:11 +0000)
committerChris Elliott <biol75@york.ac.uk>
Sun, 20 Jun 2004 13:11:37 +0000 (13:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27912 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/univ/textctrl.cpp

index b07df4b00eef8a36ee475c33462ccc2cc626a9ca..3b15ef1070fea12489dd660c028822a9589f8d76 100644 (file)
@@ -1648,6 +1648,9 @@ wxString wxTextCtrl::GetLineText(wxTextCoord line) const
     }
     else // multiline
     {
+        //this is called during DoGetBestSize
+        if (line == 0 && GetLineCount() == 0) return wxEmptyString ;
+       
         wxCHECK_MSG( (size_t)line < GetLineCount(), _T(""),
                      _T("line index out of range") );