]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/textctrl.cpp
Correct wxComboBox height in wxToolbar for old
[wxWidgets.git] / src / x11 / textctrl.cpp
index fdb7008a89d289020a6bd05e0776847bff087fc1..02692fea0fbd8b0e5c93b95a6ae9cf45b289bbcf 100644 (file)
@@ -277,7 +277,7 @@ wxString wxTextCtrl::GetValue() const
     return ret;
 }
 
-void wxTextCtrl::SetValue(const wxString& value)
+void wxTextCtrl::DoSetValue(const wxString& value, int flags)
 {
     m_modified = false;
 
@@ -343,6 +343,9 @@ void wxTextCtrl::SetValue(const wxString& value)
     MyAdjustScrollbars();
 
     Refresh();
+
+    if ( flags & SetValue_SendEvent )
+        SendTextUpdatedEvent();
 }
 
 int wxTextCtrl::GetLineLength(long lineNo) const