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/progressbar.cc | |
parent | c7577fa4ecf6f9858483c5d8b4a46e7caa2b376d (diff) |
Some DrumKitLoader refactoring.
Diffstat (limited to 'plugingui/progressbar.cc')
-rw-r--r-- | plugingui/progressbar.cc | 4 |
1 files changed, 2 insertions, 2 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) { |