positioning of the insertion point at the end

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27030 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2004-05-01 06:32:24 +00:00
parent 2d814c19cc
commit 57ab966bab

View File

@@ -1451,6 +1451,7 @@ void wxTextCtrl::WriteText(const wxString& str)
val.Remove( start , end - start ) ;
val.insert( start , str ) ;
SetValue( val ) ;
SetInsertionPoint( start + str.Length() ) ;
#endif
#endif
}