summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT/LabelRenderer.cs
diff options
context:
space:
mode:
authorPaul DiPietro <paul.dipietro@me.com>2016-04-11 09:50:28 -0700
committerJason Smith <jason.smith@xamarin.com>2016-04-11 09:50:28 -0700
commitb2ad3e53a8ae03536cf9071b0bd5d0207ee2f10c (patch)
tree227d1614c84e3d2dbe7f6231276955a6a174ff6d /Xamarin.Forms.Platform.WinRT/LabelRenderer.cs
parentc0468f1cc33fc4dc415c3a3ca4dc71986b04fc9c (diff)
downloadxamarin-forms-b2ad3e53a8ae03536cf9071b0bd5d0207ee2f10c.tar.gz
xamarin-forms-b2ad3e53a8ae03536cf9071b0bd5d0207ee2f10c.tar.bz2
xamarin-forms-b2ad3e53a8ae03536cf9071b0bd5d0207ee2f10c.zip
Enable CS0618 warnings as errors (#72)
CS0618 occurs when using an obsolete property or method. https://msdn.microsoft.com/en-us/library/x5ye6x1e.aspx
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT/LabelRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.WinRT/LabelRenderer.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/LabelRenderer.cs b/Xamarin.Forms.Platform.WinRT/LabelRenderer.cs
index 41a0b477..cb33cde9 100644
--- a/Xamarin.Forms.Platform.WinRT/LabelRenderer.cs
+++ b/Xamarin.Forms.Platform.WinRT/LabelRenderer.cs
@@ -23,7 +23,9 @@ namespace Xamarin.Forms.Platform.WinRT
run.Foreground = span.ForegroundColor.ToBrush();
if (!span.IsDefault())
+#pragma warning disable 618
run.ApplyFont(span.Font);
+#pragma warning restore 618
return run;
}
@@ -131,7 +133,9 @@ namespace Xamarin.Forms.Platform.WinRT
if (label == null || (label.IsDefault() && !_fontApplied))
return;
+#pragma warning disable 618
Font fontToApply = label.IsDefault() ? Font.SystemFontOfSize(NamedSize.Medium) : label.Font;
+#pragma warning restore 618
textBlock.ApplyFont(fontToApply);
_fontApplied = true;