From 45e08ccde95c84932557701235558e72cdc95f1b Mon Sep 17 00:00:00 2001 From: pixel Date: Sat, 28 Oct 2006 16:50:46 +0000 Subject: Fixing caps in class names. --- include/texture.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'include/texture.h') diff --git a/include/texture.h b/include/texture.h index 228f016..e49e48f 100644 --- a/include/texture.h +++ b/include/texture.h @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: texture.h,v 1.11 2006-02-02 17:29:04 pixel Exp $ */ +/* $Id: texture.h,v 1.12 2006-10-28 16:50:46 pixel Exp $ */ #ifndef __TEXTURE_H__ #define __TEXTURE_H__ @@ -29,13 +29,13 @@ #include namespace mogltk { - class texture : public Base { + class Texture : public Base { public: - texture(int, int, bool = false) throw (GeneralException); - texture(Handle *, bool = false) throw (GeneralException); - texture(int, int, int, int); - texture(SDL_Surface *, bool = false) throw (GeneralException); - virtual ~texture(); + Texture(int, int, bool = false) throw (GeneralException); + Texture(Handle *, bool = false) throw (GeneralException); + Texture(int, int, int, int); + Texture(SDL_Surface *, bool = false) throw (GeneralException); + virtual ~Texture(); SDL_Surface * GetSurface(); Uint32 * GetPixels(); SDL_PixelFormat * GetFormat(); @@ -56,10 +56,10 @@ namespace mogltk { bool texture_allocated; SDL_Surface * surface; bool planar, tainted, taintable; - static texture * header; - static texture * footer; - texture * next, * prev; - static texture * active; + static Texture * header; + static Texture * footer; + Texture * next, * prev; + static Texture * active; void recTaint(void); }; }; -- cgit v1.2.3