projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65f8780
)
fix bug with univ creating textctrl
author
Chris Elliott
<biol75@york.ac.uk>
Sun, 20 Jun 2004 13:11:37 +0000
(13:11 +0000)
committer
Chris 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
patch
|
blob
|
blame
|
history
diff --git
a/src/univ/textctrl.cpp
b/src/univ/textctrl.cpp
index b07df4b00eef8a36ee475c33462ccc2cc626a9ca..3b15ef1070fea12489dd660c028822a9589f8d76 100644
(file)
--- a/
src/univ/textctrl.cpp
+++ b/
src/univ/textctrl.cpp
@@
-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") );