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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authornosami <jasonimison@gmail.com>2015-12-16 00:15:42 +0300
committernosami <jasonimison@gmail.com>2015-12-16 00:17:25 +0300
commit230244a4c9f955ac0f0be7adc5bc482f6d673852 (patch)
tree3f772934eb16d781f1fbee24f68afd2dddeef601 /main
parent98653e45be7dbaae63905635e72e24dd65a5a421 (diff)
fixed ambiguous PropertyChangedEventArgs
Diffstat (limited to 'main')
-rw-r--r--main/src/addins/WindowsPlatform/WindowsPlatform/MainToolbar/WPFToolbar.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/addins/WindowsPlatform/WindowsPlatform/MainToolbar/WPFToolbar.cs b/main/src/addins/WindowsPlatform/WindowsPlatform/MainToolbar/WPFToolbar.cs
index 28c13f831d..d245d97cc7 100644
--- a/main/src/addins/WindowsPlatform/WindowsPlatform/MainToolbar/WPFToolbar.cs
+++ b/main/src/addins/WindowsPlatform/WindowsPlatform/MainToolbar/WPFToolbar.cs
@@ -11,11 +11,11 @@ using MonoDevelop.Ide;
using Xwt;
using Xwt.WPFBackend;
using System.Collections.ObjectModel;
+using System.ComponentModel;
using System.Runtime.InteropServices;
using System.Windows.Threading;
using System.Globalization;
using System.Windows.Data;
-using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Windows.Controls;
using System.Windows.Media;
@@ -255,7 +255,7 @@ namespace WindowsPlatform.MainToolbar
void RaisePropertyChanged ([CallerMemberName] string propName = null)
{
if (PropertyChanged != null)
- PropertyChanged (this, new PropertyChangedEventArgs (propName));
+ PropertyChanged (this, new System.ComponentModel.PropertyChangedEventArgs (propName));
}
public event PropertyChangedEventHandler PropertyChanged;