diff options
Diffstat (limited to 'libs/input/PointerController.h')
-rw-r--r-- | libs/input/PointerController.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/input/PointerController.h b/libs/input/PointerController.h index ff5631b4d207..14c0679654c6 100644 --- a/libs/input/PointerController.h +++ b/libs/input/PointerController.h @@ -81,9 +81,9 @@ public: static std::shared_ptr<PointerController> create( const sp<PointerControllerPolicyInterface>& policy, const sp<Looper>& looper, const sp<SpriteController>& spriteController); - enum InactivityTimeout { - INACTIVITY_TIMEOUT_NORMAL = 0, - INACTIVITY_TIMEOUT_SHORT = 1, + enum class InactivityTimeout { + NORMAL = 0, + SHORT = 1, }; virtual ~PointerController(); |