aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/PlatCocoa.mm
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/PlatCocoa.mm')
-rw-r--r--cocoa/PlatCocoa.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm
index 1a4e591bf..6bd5d676d 100644
--- a/cocoa/PlatCocoa.mm
+++ b/cocoa/PlatCocoa.mm
@@ -1344,9 +1344,9 @@ void Window::SetCursor(Cursor curs)
if (wid)
{
id idWin = reinterpret_cast<id>(wid);
- if ([idWin isMemberOfClass: [InnerView class]])
+ if ([idWin isMemberOfClass: [SCIContentView class]])
{
- InnerView* container = reinterpret_cast<InnerView*>(idWin);
+ SCIContentView* container = reinterpret_cast<SCIContentView*>(idWin);
[container setCursor: curs];
}
}