]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/textentrycmn.cpp
#9675: wxDataViewModel::Reset() and scrollbar problem (wxMac)
[wxWidgets.git] / src / common / textentrycmn.cpp
index c6b769601e4256fe2863a0afcb8c347c5b32a15c..5ec6850708fdb42077a14be4657664141676f8fb 100644 (file)
@@ -40,7 +40,9 @@
 wxString wxTextEntryBase::GetRange(long from, long to) const
 {
     wxString sel;
-    if ( from < to )
+    wxString value = GetValue();
+    
+    if ((from < to) && ((long)value.length() >= to + from))
     {
         sel = GetValue().substr(from, to - from);
     }