aboutsummaryrefslogtreecommitdiff
path: root/guilib/GUIRadioButtonControl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'guilib/GUIRadioButtonControl.cpp')
-rw-r--r--guilib/GUIRadioButtonControl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/guilib/GUIRadioButtonControl.cpp b/guilib/GUIRadioButtonControl.cpp
index c928ad8ce5..510b66e514 100644
--- a/guilib/GUIRadioButtonControl.cpp
+++ b/guilib/GUIRadioButtonControl.cpp
@@ -60,7 +60,7 @@ void CGUIRadioButtonControl::Render()
bool CGUIRadioButtonControl::OnAction(const CAction &action)
{
- if (action.actionId == ACTION_SELECT_ITEM)
+ if (action.GetID() == ACTION_SELECT_ITEM)
{
m_bSelected = !m_bSelected;
}