summaryrefslogtreecommitdiff
path: root/plugingui
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui')
-rw-r--r--plugingui/progressbar.cc4
-rw-r--r--plugingui/progressbar.h10
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::