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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2013-12-03 11:47:00 +0400
committerMarek Safar <marek.safar@gmail.com>2013-12-03 11:47:00 +0400
commit51927cb4192e9ab4ef42cfad8b8be638c0e615c8 (patch)
tree53e0c017a7269f1f94ac6c88b6a9dd8d63c81749 /mcs/class/WindowsBase
parent45d5758db946270273a2dcfcbacff7da3ea8e212 (diff)
parent018df75d54caaf8c8099021094a9ed2b5f6380a3 (diff)
Merge pull request #823 from DavidKarlas/master
Update PointConverter exception message from RectConverter to PointConverter
Diffstat (limited to 'mcs/class/WindowsBase')
-rw-r--r--mcs/class/WindowsBase/System.Windows/PointConverter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/WindowsBase/System.Windows/PointConverter.cs b/mcs/class/WindowsBase/System.Windows/PointConverter.cs
index 7391bae6851..eef6c529daf 100644
--- a/mcs/class/WindowsBase/System.Windows/PointConverter.cs
+++ b/mcs/class/WindowsBase/System.Windows/PointConverter.cs
@@ -44,7 +44,7 @@ namespace System.Windows {
public override object ConvertFrom (ITypeDescriptorContext context, CultureInfo culture, object value)
{
if (!(value is string))
- throw new NotSupportedException ("RectConverter only supports converting from strings");
+ throw new NotSupportedException ("PointConverter only supports converting from strings");
return Point.Parse ((string)value);
}