From f9a8f4dbc554668142f52e90540d035eee7fc752 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Fri, 10 Oct 2003 08:16:40 +0000 Subject: [PATCH] Reverted change of insertion point even when value is the same git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@24148 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/textctrl.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/msw/textctrl.cpp b/src/msw/textctrl.cpp index ec6c1deaae..7c84b1777d 100644 --- a/src/msw/textctrl.cpp +++ b/src/msw/textctrl.cpp @@ -570,16 +570,16 @@ void wxTextCtrl::SetValue(const wxString& value) if ( (value.length() > 0x400) || (value != GetValue()) ) { DoWriteText(value, FALSE /* not selection only */); + + // we should reset the modified flag even if the value didn't really change + + // mark the control as being not dirty - we changed its text, not the + // user + DiscardEdits(); + + // for compatibility, don't move the cursor when doing SetValue() + SetInsertionPoint(0); } - - // we should reset the modified flag even if the value didn't really change - - // mark the control as being not dirty - we changed its text, not the - // user - DiscardEdits(); - - // for compatibility, don't move the cursor when doing SetValue() - SetInsertionPoint(0); } #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)