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

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLarry Ewing <lewing@microsoft.com>2018-07-11 02:46:19 +0300
committerLarry Ewing <lewing@microsoft.com>2018-07-16 22:05:49 +0300
commit4d9e18e9230f4fd65ea97a700d6abcd7b15208a5 (patch)
treeaac6bf61263c655576d057c67c3ff3a66b805dc7 /Xamarin.PropertyEditing.Mac/Controls/Custom/NotifyingViewController.cs
parent0a609e6fc80f77ca1bf5a12a5c8278eea93782b5 (diff)
Style cleanups
Diffstat (limited to 'Xamarin.PropertyEditing.Mac/Controls/Custom/NotifyingViewController.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/Custom/NotifyingViewController.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/Custom/NotifyingViewController.cs b/Xamarin.PropertyEditing.Mac/Controls/Custom/NotifyingViewController.cs
index 86c58d4..21eaa73 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/Custom/NotifyingViewController.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/Custom/NotifyingViewController.cs
@@ -13,16 +13,16 @@ namespace Xamarin.PropertyEditing.Mac
class NotifyingViewController<T> : NSViewController, INotifyingListner<T> where T : NotifyingObject
{
internal T ViewModel {
- get => adaptor.ViewModel;
- set => adaptor.ViewModel = value;
+ get => Adaptor.ViewModel;
+ set => Adaptor.ViewModel = value;
}
public NotifyingViewController ()
{
- adaptor = new NotifyingViewAdaptor<T> (this);
+ Adaptor = new NotifyingViewAdaptor<T> (this);
}
- protected NotifyingViewAdaptor<T> adaptor { get; }
+ protected NotifyingViewAdaptor<T> Adaptor { get; }
public virtual void OnViewModelChanged (T oldModel)
{