From 749895f2ca07ce591f83a277765e5398ffd6d66f Mon Sep 17 00:00:00 2001 From: Scott Longley Date: Fri, 18 Feb 2022 21:58:46 +1000 Subject: [PATCH] typo fixes --- Source/Engine/Platform/Base/WindowBase.h | 2 +- Source/Engine/Platform/Windows/WindowsWindow.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Engine/Platform/Base/WindowBase.h b/Source/Engine/Platform/Base/WindowBase.h index dfcad6fe6..eb401d4ab 100644 --- a/Source/Engine/Platform/Base/WindowBase.h +++ b/Source/Engine/Platform/Base/WindowBase.h @@ -706,7 +706,7 @@ public: /// /// Gets the value indicating whenever the cursor is being clipped. /// - API_PROPERTY bool IsCursorClipping() const + API_PROPERTY() bool IsCursorClipping() const { return _isClippingCursor; } diff --git a/Source/Engine/Platform/Windows/WindowsWindow.cpp b/Source/Engine/Platform/Windows/WindowsWindow.cpp index 733064016..55089543b 100644 --- a/Source/Engine/Platform/Windows/WindowsWindow.cpp +++ b/Source/Engine/Platform/Windows/WindowsWindow.cpp @@ -582,7 +582,7 @@ void WindowsWindow::StartClippingCursor(const Rectangle& bounds) ClipCursor(&lpRect); } -void WindowsWindow::EndClippingMouse() +void WindowsWindow::EndClippingCursor() { if (_isClippingCursor) {