diff options
author | jmarshallnz <jmarshallnz@svn> | 2010-08-07 08:15:08 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2010-08-07 08:15:08 +0000 |
commit | 678c5c8cf6c2da146549d82eadf5234872c420e5 (patch) | |
tree | 87aa27f7740c39098164f074c27b5577d23c34fe /guilib/GUIProgressControl.h | |
parent | 6308c9dca68b5bb6c409dd492787f72b69ba135f (diff) |
cleanup: get rid of unused <rangemin>,<rangemax> parameters to the progress control
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@32569 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/GUIProgressControl.h')
-rw-r--r-- | guilib/GUIProgressControl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/guilib/GUIProgressControl.h b/guilib/GUIProgressControl.h index 8ceb553869..86ea5c8cc7 100644 --- a/guilib/GUIProgressControl.h +++ b/guilib/GUIProgressControl.h @@ -44,7 +44,7 @@ public: float width, float height, const CTextureInfo& backGroundTexture, const CTextureInfo& leftTexture, const CTextureInfo& midTexture, const CTextureInfo& rightTexture, const CTextureInfo& overlayTexture, - float min, float max, bool reveal=false); + bool reveal=false); virtual ~CGUIProgressControl(void); virtual CGUIProgressControl *Clone() const { return new CGUIProgressControl(*this); }; @@ -69,8 +69,6 @@ protected: CGUITexture m_guiMid; CGUITexture m_guiRight; CGUITexture m_guiOverlay; - float m_RangeMin; - float m_RangeMax; int m_iInfoCode; float m_fPercent; bool m_bReveal; |