From 01c4d6b96d62d34a7cddc99ad1c5db9af97604a6 Mon Sep 17 00:00:00 2001 From: MaestroDD Date: Wed, 20 Jan 2010 15:02:51 +0000 Subject: 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 --- guilib/GUIRadioButtonControl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guilib/GUIRadioButtonControl.cpp') diff --git a/guilib/GUIRadioButtonControl.cpp b/guilib/GUIRadioButtonControl.cpp index ed43caab56..c928ad8ce5 100644 --- a/guilib/GUIRadioButtonControl.cpp +++ b/guilib/GUIRadioButtonControl.cpp @@ -60,7 +60,7 @@ void CGUIRadioButtonControl::Render() bool CGUIRadioButtonControl::OnAction(const CAction &action) { - if (action.id == ACTION_SELECT_ITEM) + if (action.actionId == ACTION_SELECT_ITEM) { m_bSelected = !m_bSelected; } -- cgit v1.2.3