diff options
Diffstat (limited to 'src/ui/mapper/PointMapper.cpp')
-rw-r--r-- | src/ui/mapper/PointMapper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/mapper/PointMapper.cpp b/src/ui/mapper/PointMapper.cpp index 4b0104d0..1bf7defb 100644 --- a/src/ui/mapper/PointMapper.cpp +++ b/src/ui/mapper/PointMapper.cpp @@ -12,7 +12,7 @@ Point PointMapper::DoMapFromString(String str) { } else if (values.size() == 1) { return {values[0], values[0]}; } else { - throw Exception(u"Invalid Point string."); + throw Exception("Invalid Point string."); } } |