Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonius Riha <antoniusriha@gmail.com>2012-11-20 14:59:31 +0400
committerAntonius Riha <antoniusriha@gmail.com>2012-11-20 15:06:50 +0400
commita95b9c7c37f084e1925e3801d9148224f6645760 (patch)
tree7a919fdceecadce20c9085f7c883e9ca84bd3cd0 /mcs/class/WindowsBase
parent1b52c46937f08a52eef6c800f2c1daab24fa7a1b (diff)
[WindowsBase] Add some implementation to class GroupDescription
Diffstat (limited to 'mcs/class/WindowsBase')
-rw-r--r--mcs/class/WindowsBase/System.ComponentModel/GroupDescription.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/WindowsBase/System.ComponentModel/GroupDescription.cs b/mcs/class/WindowsBase/System.ComponentModel/GroupDescription.cs
index 4cd981ae02b..ed9d824c339 100644
--- a/mcs/class/WindowsBase/System.ComponentModel/GroupDescription.cs
+++ b/mcs/class/WindowsBase/System.ComponentModel/GroupDescription.cs
@@ -33,7 +33,6 @@ namespace System.ComponentModel {
{
protected GroupDescription ()
{
- throw new NotImplementedException ();
}
public ObservableCollection<object> GroupNames {
@@ -54,7 +53,8 @@ namespace System.ComponentModel {
protected virtual void OnPropertyChanged (PropertyChangedEventArgs e)
{
- throw new NotImplementedException ();
+ if (PropertyChanged != null)
+ PropertyChanged (this, e);
}
[EditorBrowsable (EditorBrowsableState.Never)]