diff options
author | davilla <davilla@svn> | 2010-04-30 22:56:07 +0000 |
---|---|---|
committer | davilla <davilla@svn> | 2010-04-30 22:56:07 +0000 |
commit | 4708c15524f989bda392b7f5a4215e911806b28a (patch) | |
tree | 1b8f0fd2c9fef9263d0ebd29090805dabebf309b /guilib/GUIWindow.h | |
parent | 20434a3e8fab8b9c017cc5418d5296da5382041e (diff) |
fixed broken OSX compile caused by r29685
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@29693 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUIWindow.h')
-rw-r--r-- | guilib/GUIWindow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guilib/GUIWindow.h b/guilib/GUIWindow.h index dc3c3bfd84..cab88c1203 100644 --- a/guilib/GUIWindow.h +++ b/guilib/GUIWindow.h @@ -114,7 +114,7 @@ public: virtual bool OnMessage(CGUIMessage& message); bool ControlGroupHasFocus(int groupID, int controlID); - virtual bool HasID(int id) { return (id >= m_controlID && id < m_controlID + m_idRange); }; + virtual bool HasID(int id); void SetIDRange(int range) { m_idRange = range; }; int GetIDRange() const { return m_idRange; }; int GetPreviousWindow() { return m_previousWindow; }; |