diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-04-16 13:23:11 +0200 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-04-16 13:23:11 +0200 | 
| commit | 35e804b984c28131fe13d229c5a0867762c6e8cf (patch) | |
| tree | 200a8c3029e38fbf0f33318faec05c4f9f8e71c3 /plugingui | |
| parent | c7577fa4ecf6f9858483c5d8b4a46e7caa2b376d (diff) | |
Some DrumKitLoader refactoring.
Diffstat (limited to 'plugingui')
| -rw-r--r-- | plugingui/progressbar.cc | 4 | ||||
| -rw-r--r-- | plugingui/progressbar.h | 10 | 
2 files changed, 7 insertions, 7 deletions
| diff --git a/plugingui/progressbar.cc b/plugingui/progressbar.cc index f934664..8a382f5 100644 --- a/plugingui/progressbar.cc +++ b/plugingui/progressbar.cc @@ -78,7 +78,7 @@ void ProgressBar::setState(ProgressBarState state)  	}  } -void ProgressBar::setTotal(int total) +void ProgressBar::setTotal(std::size_t total)  {  	if(this->total != total)  	{ @@ -87,7 +87,7 @@ void ProgressBar::setTotal(int total)  	}  } -void ProgressBar::setValue(int value) +void ProgressBar::setValue(std::size_t value)  {  	if(this->value != value)  	{ diff --git a/plugingui/progressbar.h b/plugingui/progressbar.h index d48a8b5..7485e40 100644 --- a/plugingui/progressbar.h +++ b/plugingui/progressbar.h @@ -43,11 +43,11 @@ enum class ProgressBarState  class ProgressBar : public Widget {  public: -	ProgressBar(Widget *parent); +	ProgressBar(Widget* parent);  	~ProgressBar(); -	void setTotal(int total); -	void setValue(int value); +	void setTotal(std::size_t total); +	void setValue(std::size_t value);  	void setState(ProgressBarState state); @@ -64,8 +64,8 @@ private:  	Painter::Bar bar_blue;  	Painter::Bar bar_red; -	int total{0}; -	int value{0}; +	std::size_t total{0}; +	std::size_t value{0};  };  } // GUI:: | 
