diff options
| author | Max Horn | 2006-06-05 12:29:21 +0000 | 
|---|---|---|
| committer | Max Horn | 2006-06-05 12:29:21 +0000 | 
| commit | 110718603ce0d84e53337384b56e884020655d24 (patch) | |
| tree | c26fb5cd0023000353b24fadfc74c823cff70419 | |
| parent | c0805830eb5f9c9f8221a5c2c5fdc8b032ff2b03 (diff) | |
| download | scummvm-rg350-110718603ce0d84e53337384b56e884020655d24.tar.gz scummvm-rg350-110718603ce0d84e53337384b56e884020655d24.tar.bz2 scummvm-rg350-110718603ce0d84e53337384b56e884020655d24.zip  | |
Fixing some more typenames to comply to the ScummVM coding guidelines
svn-id: r22929
| -rw-r--r-- | gui/ThemeNew.cpp | 8 | ||||
| -rw-r--r-- | gui/theme.h | 8 | 
2 files changed, 8 insertions, 8 deletions
diff --git a/gui/ThemeNew.cpp b/gui/ThemeNew.cpp index 4598498d80..1ad9f7daa5 100644 --- a/gui/ThemeNew.cpp +++ b/gui/ThemeNew.cpp @@ -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: diff --git a/gui/theme.h b/gui/theme.h index 94f3f87fc3..5d4532da5d 100644 --- a/gui/theme.h +++ b/gui/theme.h @@ -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,  | 
