// set/get the value
// ----------------------------------------------------------------------------
-void wxTextCtrl::SetValue(const wxString& value)
+void wxTextCtrl::ChangeValue(const wxString& value)
{
if ( IsSingleLine() && (value == GetValue()) )
{
{
SetInsertionPoint(0);
}
+}
- // TODO: should we generate the event or not, finally?
+void wxTextCtrl::SetValue(const wxString& value)
+{
+ ChangeValue(value);
+ SendTextUpdatedEvent();
}
const wxArrayString& wxTextCtrl::GetLines() const