diff options
author | corvid <devnull@localhost> | 2014-12-21 21:07:41 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2014-12-21 21:07:41 +0000 |
commit | 5eb74aa36fd7d0448ac740c2a35fd6d485c27aba (patch) | |
tree | 6088a7ad2b4a9a682f266908357a84a2a06679c7 /dpi | |
parent | 79d3db9a8d5d1cc4e89954aefd2194f61aac45d9 (diff) |
trim some spaces
Diffstat (limited to 'dpi')
-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(); }; |