diff options
author | spiff_ <spiff_@svn> | 2010-01-08 23:47:11 +0000 |
---|---|---|
committer | spiff_ <spiff_@svn> | 2010-01-08 23:47:11 +0000 |
commit | d5c23e36410e2570b1089da505acb2b69d53262a (patch) | |
tree | e38ac6cc8d36b323a3e800bb399585a014b3ea4f /guilib/GUIEditControl.h | |
parent | ccea07a5a4229a0f7ebb7ff58e034820751a744a (diff) |
cosmetics
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@26558 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUIEditControl.h')
-rw-r--r-- | guilib/GUIEditControl.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/guilib/GUIEditControl.h b/guilib/GUIEditControl.h index 69a27048c9..59e1368e02 100644 --- a/guilib/GUIEditControl.h +++ b/guilib/GUIEditControl.h @@ -71,11 +71,11 @@ public: void SetCursorPosition(unsigned int iPosition); void SetInputType(INPUT_TYPE type, int heading); - + void SetTextChangeActions(const std::vector<CGUIActionDescriptor>& textChangeActions) { m_textChangeActions = textChangeActions; }; - + bool HasTextChangeActions() { return m_textChangeActions.size() > 0; }; - + protected: virtual void RenderText(); CStdStringW GetDisplayedText() const; @@ -97,14 +97,14 @@ protected: int m_inputHeading; INPUT_TYPE m_inputType; - - std::vector<CGUIActionDescriptor> m_textChangeActions; - + std::vector<CGUIActionDescriptor> m_textChangeActions; + + unsigned int m_smsKeyIndex; unsigned int m_smsLastKey; CStopWatch m_smsTimer; - + static const char* smsLetters[10]; static const unsigned int smsDelay; }; |