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. --- lib/glbase.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/glbase.cc') diff --git a/lib/glbase.cc b/lib/glbase.cc index 89b849a..922a263 100644 --- a/lib/glbase.cc +++ b/lib/glbase.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: glbase.cc,v 1.23 2006-02-02 17:29:05 pixel Exp $ */ +/* $Id: glbase.cc,v 1.24 2006-10-28 16:50:46 pixel Exp $ */ #include #include @@ -220,10 +220,10 @@ inline static unsigned int nextpower(unsigned int n) { } } -mogltk::texture * mogltk::glbase::GrabTexture() { +mogltk::Texture * mogltk::glbase::GrabTexture() { int w = nextpower(GetWidth()); int h = nextpower(GetHeight()); - texture * r = new texture(w, h); + Texture * r = new Texture(w, h); r->name = "Texture grabbed."; SDL_Surface * t; -- cgit v1.2.3