Fixing some more typenames to comply to the ScummVM coding guidelines

svn-id: r22929
This commit is contained in:
Max Horn 2006-06-05 12:29:21 +00:00
parent c0805830eb
commit 110718603c
2 changed files with 8 additions and 8 deletions

View File

@ -522,10 +522,10 @@ void ThemeNew::drawWidgetBackground(const Common::Rect &r, uint16 hints, WidgetB
Common::Rect r2;
kImageHandles corner, top, left, bkgd;
kShadowStyles shadow;
kColorHandles start, end;
kGradientFactors factor;
ImageHandles corner, top, left, bkgd;
ShadowStyles shadow;
ColorHandles start, end;
GradientFactors factor;
switch (background) {
case kWidgetBackgroundBorderSmall:

View File

@ -345,7 +345,7 @@ private:
void drawSurfaceMasked(const Common::Rect &r, const Graphics::Surface *surf, bool upDown, bool leftRight, int alpha,
OverlayColor start, OverlayColor end, uint factor = 1);
enum kShadowStyles {
enum ShadowStyles {
kShadowFull = 0,
kShadowSmall = 1,
kShadowButton = 2,
@ -393,7 +393,7 @@ private:
void setupFont(const String &key, const String &name, FontStyle style);
public:
enum kImageHandles {
enum ImageHandles {
kDialogBkgdCorner = 0,
kDialogBkgdTop = 1,
kDialogBkgdLeft = 2,
@ -484,7 +484,7 @@ private:
const String *_imageHandles;
const Graphics::Surface **_images;
enum kColorHandles {
enum ColorHandles {
kMainDialogStart = 0,
kMainDialogEnd = 1,
@ -551,7 +551,7 @@ private:
OverlayColor _colors[kColorHandlesMax];
enum kGradientFactors {
enum GradientFactors {
kMainDialogFactor = 0,
kDialogFactor = 1,
kDialogSpecialFactor = 2,