diff options
author | Sebastian Geerken <devnull@localhost> | 2014-12-21 23:24:13 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-12-21 23:24:13 +0100 |
commit | 424a01ce5c2dd3cadd3d7ca60c7b43283c183b02 (patch) | |
tree | fcf4e10c1ce3a56e3ae7aeb4e1798e21aafbea41 /dpi/downloads.cc | |
parent | b21e3a4d98c1537ca430e81968dd4bb17561a981 (diff) | |
parent | a614ea631d34d5c6273bfdaeea6a79ce2eb366a1 (diff) |
Merge with main repo.
Diffstat (limited to 'dpi/downloads.cc')
-rw-r--r-- | dpi/downloads.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpi/downloads.cc b/dpi/downloads.cc index 70acaa8a..771098e5 100644 --- a/dpi/downloads.cc +++ b/dpi/downloads.cc @@ -68,7 +68,7 @@ protected: void draw(); public: ProgressBar(int x, int y, int w, int h, const char *lbl = 0); - void range(double min, double max, double step = 1) { + void range(double min, double max, double step = 1) { mMin = min; mMax = max; mStep = step; }; void step(double step) { mPresent += step; redraw(); }; |