aboutsummaryrefslogtreecommitdiff
path: root/guilib/GUIWindowManager.cpp
diff options
context:
space:
mode:
authorjmarshallnz <jmarshallnz@svn>2010-02-19 02:55:37 +0000
committerjmarshallnz <jmarshallnz@svn>2010-02-19 02:55:37 +0000
commit5f22c573c7fbb7a45cf2aaee2e1ddad7bb7899cb (patch)
tree616c5e8b5f6bb5ee97f4e2ed92ab661d2f22e555 /guilib/GUIWindowManager.cpp
parentaf22bc05ff517e85698c5618ad0b322706955ed8 (diff)
cleanup: Move all members of CAction private, accessed via getters, as we only ever set in constructors.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@27962 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUIWindowManager.cpp')
-rw-r--r--guilib/GUIWindowManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/guilib/GUIWindowManager.cpp b/guilib/GUIWindowManager.cpp
index 10999c96d4..873665b718 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.actionId == ACTION_MOUSE && (dialog->GetID() == WINDOW_VIDEO_OVERLAY ||
+ if (action.GetID() == ACTION_MOUSE && (dialog->GetID() == WINDOW_VIDEO_OVERLAY ||
dialog->GetID() == WINDOW_MUSIC_OVERLAY))
{
if (dialog->OnAction(action))