diff options
author | 2022-06-02 06:59:33 +0000 | |
---|---|---|
committer | 2022-06-10 04:07:23 +0000 | |
commit | 015f5d9d5c31f94fa44927b5a3c5734a71dcb8eb (patch) | |
tree | 23756dfe444a1d694daf026a63e547da97465879 /libs/input/PointerController.cpp | |
parent | 925e3670fdb16b41d5a8ac47d368c93a2c021fbd (diff) |
Change POINTER_ICON_STYLE enum to a type safe enum class
Test: Current tests all pass, this is a static type change, not
a functional change.
Change-Id: I8f0e8e43ea64f5abab163e4ef5444a8cb3d4fa78
Diffstat (limited to 'libs/input/PointerController.cpp')
-rw-r--r-- | libs/input/PointerController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/input/PointerController.cpp b/libs/input/PointerController.cpp index 10ea6512c724..54f893e165f7 100644 --- a/libs/input/PointerController.cpp +++ b/libs/input/PointerController.cpp @@ -264,7 +264,7 @@ void PointerController::setDisplayViewport(const DisplayViewport& viewport) { } } -void PointerController::updatePointerIcon(int32_t iconId) { +void PointerController::updatePointerIcon(PointerIconStyle iconId) { std::scoped_lock lock(getLock()); mCursorController.updatePointerIcon(iconId); } |