]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/textctrl.cpp
typo/spelling fixes (patch 983448)
[wxWidgets.git] / src / univ / textctrl.cpp
index b8e18fbd2b718cadafd3e4857cfa3e8056fdf8ca..3b15ef1070fea12489dd660c028822a9589f8d76 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     15.09.00
 // RCS-ID:      $Id$
 // Copyright:   (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /*
@@ -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") );