* TextBoxBase.cs (set_Text): Don't use base.Text, instead just fire OnTextChanged by ourselves. There's no point calling base, we don't set the base value anywhere else. Fixes #78773. svn path=/trunk/mcs/; revision=63778
@@ -1,3 +1,9 @@
+2006-08-15 Peter Dennis Bartok <[email protected]>
+
+ * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
+ fire OnTextChanged by ourselves. There's no point calling base,
+ we don't set the base value anywhere else. Fixes #78773.
2006-08-15 Carlos Alberto Cortez <[email protected]>
* ListBox.cs: Call CollectionChanged when modifying
@@ -540,9 +540,8 @@ namespace System.Windows.Forms {
document.Empty();
CalculateDocument();
}
- base.Text = value;
- // Not needed, base.Text already fires it
- // OnTextChanged(EventArgs.Empty);
+ OnTextChanged(EventArgs.Empty);