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/GUIWindowManager.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/GUIWindowManager.cpp')
-rw-r--r-- | guilib/GUIWindowManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guilib/GUIWindowManager.cpp b/guilib/GUIWindowManager.cpp index 7cf12f73c3..e28eab5bef 100644 --- a/guilib/GUIWindowManager.cpp +++ b/guilib/GUIWindowManager.cpp @@ -456,7 +456,7 @@ bool CGUIWindowManager::OnAction(const CAction &action) } // music or video overlay are handled as a special case, as they're modeless, but we allow // clicking on them with the mouse. - if (action.id == ACTION_MOUSE && (dialog->GetID() == WINDOW_VIDEO_OVERLAY || + if (action.actionId == ACTION_MOUSE && (dialog->GetID() == WINDOW_VIDEO_OVERLAY || dialog->GetID() == WINDOW_MUSIC_OVERLAY)) { if (dialog->OnAction(action)) |