]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/textctrl.cpp
Better place for coordinate mirroring and removal
[wxWidgets.git] / src / univ / textctrl.cpp
index 5dc742581b5f08660ede6e57ce4ecdce5f87e080..5b1c204822080ef4c658bf2f1f6c0d388327f817 100644 (file)
@@ -778,7 +778,7 @@ wxTextCtrl::~wxTextCtrl()
 // set/get the value
 // ----------------------------------------------------------------------------
 
-void wxTextCtrl::SetValue(const wxString& value)
+void wxTextCtrl::DoSetValue(const wxString& value, int flags)
 {
     if ( IsSingleLine() && (value == GetValue()) )
     {
@@ -793,7 +793,8 @@ void wxTextCtrl::SetValue(const wxString& value)
         SetInsertionPoint(0);
     }
 
-    // TODO: should we generate the event or not, finally?
+    if ( flags & SetValue_SendEvent )
+        SendTextUpdatedEvent();
 }
 
 const wxArrayString& wxTextCtrl::GetLines() const