diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-03-09 12:24:36 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2006-03-09 12:24:36 +0000 |
commit | 76185faa619fd06576f2e67e1f2d5f1fb659e340 (patch) | |
tree | 48a7bdff1cbee3f0485a84991c9beac6bd9929a6 /src/gui/progressbar.h | |
parent | e5f795ad9952b8bba6993ee3e324b22a0f104816 (diff) | |
download | mana-76185faa619fd06576f2e67e1f2d5f1fb659e340.tar.gz mana-76185faa619fd06576f2e67e1f2d5f1fb659e340.tar.bz2 mana-76185faa619fd06576f2e67e1f2d5f1fb659e340.tar.xz mana-76185faa619fd06576f2e67e1f2d5f1fb659e340.zip |
Removed coordinate arguments from ProgressBar ctor.
Diffstat (limited to 'src/gui/progressbar.h')
-rw-r--r-- | src/gui/progressbar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/progressbar.h b/src/gui/progressbar.h index cd62c498..3e58f14e 100644 --- a/src/gui/progressbar.h +++ b/src/gui/progressbar.h @@ -41,7 +41,7 @@ class ProgressBar : public gcn::Widget { /** * Constructor, initializes the progress with the given value. */ - ProgressBar(float progress = 0.0f, int x = 0, int y = 0, + ProgressBar(float progress = 0.0f, unsigned int width = 40, unsigned int height = 7, Uint8 red = 150, Uint8 green = 150, Uint8 blue = 150); |