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 /xbmc/GUIDialogPictureInfo.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 'xbmc/GUIDialogPictureInfo.cpp')
-rw-r--r-- | xbmc/GUIDialogPictureInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/GUIDialogPictureInfo.cpp b/xbmc/GUIDialogPictureInfo.cpp index 021c43fb08..a1297c4128 100644 --- a/xbmc/GUIDialogPictureInfo.cpp +++ b/xbmc/GUIDialogPictureInfo.cpp @@ -53,7 +53,7 @@ void CGUIDialogPictureInfo::OnInitWindow() bool CGUIDialogPictureInfo::OnAction(const CAction& action) { - switch (action.id) + switch (action.actionId) { // if we're running from slideshow mode, drop the "next picture" and "previous picture" actions through. case ACTION_NEXT_PICTURE: |