diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 20:17:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:21 +0300 |
commit | a0097fcc8d5b2ca32b6b346d6b06156f4d0c459c (patch) | |
tree | e9d781c40971005b15e8fb60d9ea448b7e9be79e /src | |
parent | 2b4bf97375854cf11640977b2d4458e49b0263bf (diff) | |
download | plus-a0097fcc8d5b2ca32b6b346d6b06156f4d0c459c.tar.gz plus-a0097fcc8d5b2ca32b6b346d6b06156f4d0c459c.tar.bz2 plus-a0097fcc8d5b2ca32b6b346d6b06156f4d0c459c.tar.xz plus-a0097fcc8d5b2ca32b6b346d6b06156f4d0c459c.zip |
remove default parameter from progressbar constructor.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/widgets/progressbar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/progressbar.h b/src/gui/widgets/progressbar.h index 254c2533b..8c37500b7 100644 --- a/src/gui/widgets/progressbar.h +++ b/src/gui/widgets/progressbar.h @@ -49,7 +49,7 @@ class ProgressBar final : public gcn::Widget, /** * Constructor, initializes the progress with the given value. */ - ProgressBar(const Widget2 *const widget, float progress = 0.0F, + ProgressBar(const Widget2 *const widget, float progress, const int width = 40, const int height = 7, const int color = -1); |