diff options
author | jmarshallnz <jmarshallnz@svn> | 2010-02-19 05:21:26 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2010-02-19 05:21:26 +0000 |
commit | c0a440b769df511230e24f852720c53cfee9aefe (patch) | |
tree | d53fc079e9fef139bd81fe809465c4c4d549443c /guilib/GUISliderControl.cpp | |
parent | 6bde08e32f21f239f44b89ebac47aa5176302666 (diff) |
cleanup: Remove unused ACTION_MOUSE_CLICK
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@27964 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUISliderControl.cpp')
-rw-r--r-- | guilib/GUISliderControl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guilib/GUISliderControl.cpp b/guilib/GUISliderControl.cpp index 73b58ac147..eccb346962 100644 --- a/guilib/GUISliderControl.cpp +++ b/guilib/GUISliderControl.cpp @@ -328,7 +328,7 @@ bool CGUISliderControl::OnMouseEvent(const CPoint &point, const CMouseEvent &eve SetFromPosition(point); return true; } - else if (event.m_id == ACTION_MOUSE_CLICK && m_guiBackground.HitTest(point)) + else if (event.m_id == ACTION_MOUSE_LEFT_CLICK && m_guiBackground.HitTest(point)) { SetFromPosition(point); return true; |