aboutsummaryrefslogtreecommitdiff
path: root/guilib/GUIProgressControl.h
diff options
context:
space:
mode:
authorjmarshallnz <jmarshallnz@svn>2010-08-07 08:15:08 +0000
committerjmarshallnz <jmarshallnz@svn>2010-08-07 08:15:08 +0000
commit678c5c8cf6c2da146549d82eadf5234872c420e5 (patch)
tree87aa27f7740c39098164f074c27b5577d23c34fe /guilib/GUIProgressControl.h
parent6308c9dca68b5bb6c409dd492787f72b69ba135f (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.h4
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;