summaryrefslogtreecommitdiff
path: root/src/gui/progressbar.h
diff options
context:
space:
mode:
authorYohann Ferreira <bertram@cegetel.net>2005-02-27 01:00:34 +0000
committerYohann Ferreira <bertram@cegetel.net>2005-02-27 01:00:34 +0000
commite7af59e38e0b66db5adc4b40d213066b52cb47f2 (patch)
treedad9607deb4038b27ad510919d25263d632fea0e /src/gui/progressbar.h
parent500676abe3e03d63c192663db78d5d1f963c18f4 (diff)
downloadMana-e7af59e38e0b66db5adc4b40d213066b52cb47f2.tar.gz
Mana-e7af59e38e0b66db5adc4b40d213066b52cb47f2.tar.bz2
Mana-e7af59e38e0b66db5adc4b40d213066b52cb47f2.tar.xz
Mana-e7af59e38e0b66db5adc4b40d213066b52cb47f2.zip
Now only using Image instances. No more SDL_Surface.
Diffstat (limited to 'src/gui/progressbar.h')
-rw-r--r--src/gui/progressbar.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/progressbar.h b/src/gui/progressbar.h
index 81255b6e..5da046b7 100644
--- a/src/gui/progressbar.h
+++ b/src/gui/progressbar.h
@@ -94,9 +94,8 @@ class ProgressBar : public gcn::Widget {
Image *dBackground;
Image *dTopLeftBorder, *dTopRightBorder, *dBottomLeftBorder, *dBottomRightBorder;
Image *dLeftBorder, *dRightBorder, *dTopBorder, *dBottomBorder;
- #ifndef USE_OPENGL
- SDL_Surface *ColorBar;
- #endif
+ // Our color bar
+ Image *colorBar;
};
#endif