diff options
author | MaestroDD <MaestroDD@svn> | 2010-01-20 15:02:51 +0000 |
---|---|---|
committer | MaestroDD <MaestroDD@svn> | 2010-01-20 15:02:51 +0000 |
commit | 01c4d6b96d62d34a7cddc99ad1c5db9af97604a6 (patch) | |
tree | 929a8d7a873fc7fceeaa8d5890b2bf7270b3877e /guilib/GUISliderControl.cpp | |
parent | 7947147e81ab0774cabb28c4a27bf5652decff25 (diff) |
fixed build: don't use reserved 'id' as c++ member var
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@27026 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 d4f2cb8938..59a6474bbd 100644 --- a/guilib/GUISliderControl.cpp +++ b/guilib/GUISliderControl.cpp @@ -128,7 +128,7 @@ bool CGUISliderControl::OnMessage(CGUIMessage& message) bool CGUISliderControl::OnAction(const CAction &action) { - switch ( action.id ) + switch ( action.actionId ) { case ACTION_MOVE_LEFT: //case ACTION_OSD_SHOW_VALUE_MIN: |