summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/Cells
diff options
context:
space:
mode:
authorkingces95 <kingces95@users.noreply.github.com>2016-04-12 11:44:30 -0700
committerJason Smith <jason.smith@xamarin.com>2016-04-12 11:44:30 -0700
commit10f6c08ceb89b8b302cb41dd6fe7b1ccf70884ba (patch)
treeb9bd7f86a3650b2fedcf762b18c25699ff44f82e /Xamarin.Forms.Core/Cells
parent73defe491f11fc417a22eebcf805ee20df90045a (diff)
downloadxamarin-forms-10f6c08ceb89b8b302cb41dd6fe7b1ccf70884ba.tar.gz
xamarin-forms-10f6c08ceb89b8b302cb41dd6fe7b1ccf70884ba.tar.bz2
xamarin-forms-10f6c08ceb89b8b302cb41dd6fe7b1ccf70884ba.zip
Mop up enabling warnings as errors (#78)
Diffstat (limited to 'Xamarin.Forms.Core/Cells')
-rw-r--r--Xamarin.Forms.Core/Cells/EntryCell.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/Cells/EntryCell.cs b/Xamarin.Forms.Core/Cells/EntryCell.cs
index d74e365e..cccdcae1 100644
--- a/Xamarin.Forms.Core/Cells/EntryCell.cs
+++ b/Xamarin.Forms.Core/Cells/EntryCell.cs
@@ -74,7 +74,9 @@ namespace Xamarin.Forms
static void OnHorizontalTextAlignmentPropertyChanged(BindableObject bindable, object oldValue, object newValue)
{
var label = (EntryCell)bindable;
+#pragma warning disable 0618 // retain until XAlign removed
label.OnPropertyChanged(nameof(XAlign));
+#pragma warning restore
}
}
} \ No newline at end of file