summaryrefslogtreecommitdiff
path: root/Stubs
diff options
context:
space:
mode:
authorE.Z. Hart <hartez@users.noreply.github.com>2017-07-24 16:56:55 -0400
committerGitHub <noreply@github.com>2017-07-24 16:56:55 -0400
commitb19c401312227e9661fef63ab1c012614cb95fe1 (patch)
tree0354f8554875b225cb77a7765c1ea63accb343e9 /Stubs
parent19aeca655ef833cae1904eaf4db209708085c2bc (diff)
downloadxamarin-forms-b19c401312227e9661fef63ab1c012614cb95fe1.tar.gz
xamarin-forms-b19c401312227e9661fef63ab1c012614cb95fe1.tar.bz2
xamarin-forms-b19c401312227e9661fef63ab1c012614cb95fe1.zip
Use correct renderers for pre-AppCompat (#1044)
* Use correct renderers for pre-AppCompat activity * Removed extraneous using * Fix formatting
Diffstat (limited to 'Stubs')
-rw-r--r--Stubs/Xamarin.Forms.Platform.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Stubs/Xamarin.Forms.Platform.cs b/Stubs/Xamarin.Forms.Platform.cs
index 02f70877..8944d2e7 100644
--- a/Stubs/Xamarin.Forms.Platform.cs
+++ b/Stubs/Xamarin.Forms.Platform.cs
@@ -35,14 +35,14 @@ namespace Xamarin.Forms.Platform
[RenderWith (typeof (EditorRenderer))]
internal class _EditorRenderer { }
#if __ANDROID__
- [RenderWith (typeof (Xamarin.Forms.Platform.Android.FastRenderers.LabelRenderer))]
+ [RenderWith(typeof(Xamarin.Forms.Platform.Android.LabelRenderer))]
#else
[RenderWith (typeof (LabelRenderer))]
#endif
internal class _LabelRenderer { }
#if __ANDROID__
- [RenderWith(typeof(Xamarin.Forms.Platform.Android.FastRenderers.ImageRenderer))]
+ [RenderWith(typeof(Xamarin.Forms.Platform.Android.ImageRenderer))]
#else
[RenderWith (typeof (ImageRenderer))]
#endif