aboutsummaryrefslogtreecommitdiff
path: root/src/ui/mapper/CursorMapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/mapper/CursorMapper.cpp')
-rw-r--r--src/ui/mapper/CursorMapper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/mapper/CursorMapper.cpp b/src/ui/mapper/CursorMapper.cpp
index ed3c91ec..4f59439f 100644
--- a/src/ui/mapper/CursorMapper.cpp
+++ b/src/ui/mapper/CursorMapper.cpp
@@ -24,7 +24,7 @@ std::shared_ptr<ICursor> CursorMapper::DoMapFromString(String str) {
} else if (str.CaseInsensitiveCompare(u"ibeam") == 0) {
return cursor_manager->GetSystemCursor(SystemCursorType::IBeam);
} else {
- throw Exception(u"Unsupported cursor type.");
+ throw Exception("Unsupported cursor type.");
}
}