]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/textentrycmn.cpp
remove wxSETranslator() entirely from wxUSE_ON_FATAL_EXCEPTION==0 build (part of...
[wxWidgets.git] / src / common / textentrycmn.cpp
index 5ec6850708fdb42077a14be4657664141676f8fb..4adca176b049568a93603b7ffe79127742fdf709 100644 (file)
@@ -41,10 +41,10 @@ wxString wxTextEntryBase::GetRange(long from, long to) const
 {
     wxString sel;
     wxString value = GetValue();
-    
-    if ((from < to) && ((long)value.length() >= to + from))
+
+    if ( from < to && (long)value.length() >= to )
     {
-        sel = GetValue().substr(from, to - from);
+        sel = value.substr(from, to - from);
     }
 
     return sel;