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:
authorEric Maupin <ermaup@microsoft.com>2018-01-25 02:10:18 +0300
committerEric Maupin <ermaup@microsoft.com>2018-01-25 22:53:09 +0300
commitf5dae0148140149ebf4174ac84e98f6272c1934d (patch)
treecc8d4f07adaa55a5816c29d37437a3f6b73ef591 /Xamarin.PropertyEditing.Tests/PointViewModelTests.cs
parent0fcb722f7478ffd344821a9464b80c69a9a96ba4 (diff)
[Core] Ensure universal access to target platform
Diffstat (limited to 'Xamarin.PropertyEditing.Tests/PointViewModelTests.cs')
-rw-r--r--Xamarin.PropertyEditing.Tests/PointViewModelTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.PropertyEditing.Tests/PointViewModelTests.cs b/Xamarin.PropertyEditing.Tests/PointViewModelTests.cs
index d9811b5..efb1138 100644
--- a/Xamarin.PropertyEditing.Tests/PointViewModelTests.cs
+++ b/Xamarin.PropertyEditing.Tests/PointViewModelTests.cs
@@ -87,9 +87,9 @@ namespace Xamarin.PropertyEditing.Tests
return new CommonPoint (rand.Next (), rand.Next ());
}
- protected override PointPropertyViewModel GetViewModel (IPropertyInfo property, IEnumerable<IObjectEditor> editors)
+ protected override PointPropertyViewModel GetViewModel (TargetPlatform platform, IPropertyInfo property, IEnumerable<IObjectEditor> editors)
{
- return new PointPropertyViewModel (property, editors);
+ return new PointPropertyViewModel (platform, property, editors);
}
}
}