]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/textctrl.cpp
Make status bar grip move to the left in RTL.
[wxWidgets.git] / src / univ / textctrl.cpp
index 17ed256745af3b68c26d4d8c5664439a096d0d4d..5b1c204822080ef4c658bf2f1f6c0d388327f817 100644 (file)
@@ -778,7 +778,7 @@ wxTextCtrl::~wxTextCtrl()
 // set/get the value
 // ----------------------------------------------------------------------------
 
-void wxTextCtrl::ChangeValue(const wxString& value)
+void wxTextCtrl::DoSetValue(const wxString& value, int flags)
 {
     if ( IsSingleLine() && (value == GetValue()) )
     {
@@ -792,12 +792,9 @@ void wxTextCtrl::ChangeValue(const wxString& value)
     {
         SetInsertionPoint(0);
     }
-}
 
-void wxTextCtrl::SetValue(const wxString& value)
-{
-    ChangeValue(value);
-    SendTextUpdatedEvent();
+    if ( flags & SetValue_SendEvent )
+        SendTextUpdatedEvent();
 }
 
 const wxArrayString& wxTextCtrl::GetLines() const