fix wxTextCtrl::SetSelection(-1, -1) to behave as documented (patch 1700000)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45443 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-04-13 23:36:42 +00:00
parent 223b7504a2
commit b5a3a81b9c
2 changed files with 9 additions and 1 deletions

View File

@@ -1444,8 +1444,12 @@ wxString wxTextCtrl::GetSelectionText() const
void wxTextCtrl::SetSelection(wxTextPos from, wxTextPos to)
{
// selecting till -1 is the same as selecting to the end
if ( to == -1 && from != -1 )
if ( to == -1 )
{
// and selecting (-1, -1) range is the same as selecting everything, by
// convention
if ( from == -1 )
from = 0;
to = GetLastPosition();
}