diff options
Diffstat (limited to 'backends/platform/bada/form.h')
-rw-r--r-- | backends/platform/bada/form.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/platform/bada/form.h b/backends/platform/bada/form.h index 09ce941a7b..3340e2216b 100644 --- a/backends/platform/bada/form.h +++ b/backends/platform/bada/form.h @@ -50,7 +50,7 @@ public: result Construct(); bool pollEvent(Common::Event &event); - bool isClosing() { return _state == ClosingState; } + bool isClosing() { return _state == kClosingState; } void pushKey(Common::KeyCode keycode); void exitSystem(); @@ -100,9 +100,9 @@ private: Osp::Base::Runtime::Thread *_gameThread; Osp::Base::Runtime::Mutex *_eventQueueLock; Common::Queue<Common::Event> _eventQueue; - enum {InitState, ActiveState, ClosingState, DoneState, ErrorState} _state; - enum {LeftButton, RightButtonOnce, RightButton, MoveOnly} _buttonState; - enum {ControlMouse, EscapeKey, GameMenu, ShowKeypad, SetVolume} _shortcut; + enum { kInitState, kActiveState, kClosingState, kDoneState, kErrorState } _state; + enum { kLeftButton, kRightButtonOnce, kRightButton, kMoveOnly } _buttonState; + enum { kControlMouse, kEscapeKey, kGameMenu, kShowKeypad, kSetVolume } _shortcut; }; #endif |