summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpixel <pixel>2007-07-27 14:10:19 +0000
committerpixel <pixel>2007-07-27 14:10:19 +0000
commit84c92ab61304209ccd83935c7745b5d535109456 (patch)
tree93d086f24dff673945c33ebed6a8ab9227f84418
parent843a14ea70938381fc61cd9054f0b30bb08c990e (diff)
Win32 is evil, and doesn't have case sensitive filenames...
-rw-r--r--include/base.h4
-rw-r--r--include/engine.h4
-rw-r--r--include/font.h4
-rw-r--r--include/glfont.h4
-rw-r--r--include/glshape.h6
-rw-r--r--include/glsprite.h4
-rw-r--r--include/glwidgets.h4
-rw-r--r--include/shape.h6
-rw-r--r--include/sprite.h4
-rw-r--r--include/widgets.h4
-rw-r--r--lib/base.cc2
-rw-r--r--lib/contextmenu.cc6
-rw-r--r--lib/engine.cc2
-rw-r--r--lib/font.cc4
-rw-r--r--lib/glbase.cc2
-rw-r--r--lib/glfont.cc2
-rw-r--r--lib/glshape.cc6
-rw-r--r--lib/glsprite.cc2
-rw-r--r--lib/glwidgets.cc2
-rw-r--r--lib/inputtext.cc6
-rw-r--r--lib/mcolor.cc2
-rw-r--r--lib/mogltk-lua-bindings.cc2
-rw-r--r--lib/shape.cc8
-rw-r--r--lib/sprite.cc2
-rw-r--r--lib/texture.cc4
-rw-r--r--lib/widgets.cc6
26 files changed, 51 insertions, 51 deletions
diff --git a/include/base.h b/include/base.h
index 96763e5..928ccc1 100644
--- a/include/base.h
+++ b/include/base.h
@@ -17,14 +17,14 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: base.h,v 1.11 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: base.h,v 1.12 2007-07-27 14:10:19 pixel Exp $ */
#ifndef __BASE_H__
#define __BASE_H__
#include <SDL.h>
#include <Exceptions.h>
-#include <Texture.h>
+#include <texture.h>
namespace mogltk {
struct rect {
diff --git a/include/engine.h b/include/engine.h
index 77846ac..5e74ddc 100644
--- a/include/engine.h
+++ b/include/engine.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: engine.h,v 1.23 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: engine.h,v 1.24 2007-07-27 14:10:19 pixel Exp $ */
#ifndef __ENGINE_H__
#define __ENGINE_H__
@@ -98,6 +98,6 @@ namespace mogltk {
};
};
-#include <Widgets.h>
+#include <widgets.h>
#endif
diff --git a/include/font.h b/include/font.h
index 32d02dd..44b5fbe 100644
--- a/include/font.h
+++ b/include/font.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: font.h,v 1.12 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: font.h,v 1.13 2007-07-27 14:10:19 pixel Exp $ */
#ifndef __FONT_H__
#define __FONT_H__
@@ -26,7 +26,7 @@
#include <stdarg.h>
#include <BString.h>
#include <Handle.h>
-#include <Texture.h>
+#include <texture.h>
#include <mcolor.h>
#include <base.h>
diff --git a/include/glfont.h b/include/glfont.h
index 4c2a880..7e770a1 100644
--- a/include/glfont.h
+++ b/include/glfont.h
@@ -17,13 +17,13 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glfont.h,v 1.17 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glfont.h,v 1.18 2007-07-27 14:10:19 pixel Exp $ */
#ifndef __GLFONT_H__
#define __GLFONT_H__
#include <SDL.h>
-#include <Font.h>
+#include <font.h>
#include <mcolor.h>
namespace mogltk {
diff --git a/include/glshape.h b/include/glshape.h
index 77eea0f..7a6f3cc 100644
--- a/include/glshape.h
+++ b/include/glshape.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glshape.h,v 1.16 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glshape.h,v 1.17 2007-07-27 14:10:19 pixel Exp $ */
#ifndef __GLSHAPE_H__
#define __GLSHAPE_H__
@@ -25,8 +25,8 @@
#include <Exceptions.h>
#include <BString.h>
#include <mcolor.h>
-#include <Texture.h>
-#include <Shape.h>
+#include <texture.h>
+#include <shape.h>
namespace mogltk {
class glShape : public Shape {
diff --git a/include/glsprite.h b/include/glsprite.h
index d523e4d..6c1e9f6 100644
--- a/include/glsprite.h
+++ b/include/glsprite.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glsprite.h,v 1.8 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glsprite.h,v 1.9 2007-07-27 14:10:19 pixel Exp $ */
#ifndef __GLSPRITE_H__
#define __GLSPRITE_H__
@@ -26,7 +26,7 @@
#include <Exceptions.h>
#include <Handle.h>
#include <mcolor.h>
-#include <Texture.h>
+#include <texture.h>
#include <sprite.h>
namespace mogltk {
diff --git a/include/glwidgets.h b/include/glwidgets.h
index 2c32f0a..394a948 100644
--- a/include/glwidgets.h
+++ b/include/glwidgets.h
@@ -17,12 +17,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glwidgets.h,v 1.10 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glwidgets.h,v 1.11 2007-07-27 14:10:19 pixel Exp $ */
#ifndef __GLWIDGETS_H__
#define __GLWIDGETS_H__
-#include <Widgets.h>
+#include <widgets.h>
namespace mogltk {
namespace Widgets {
diff --git a/include/shape.h b/include/shape.h
index 74422a1..23dfc15 100644
--- a/include/shape.h
+++ b/include/shape.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: shape.h,v 1.18 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: shape.h,v 1.19 2007-07-27 14:10:19 pixel Exp $ */
#ifndef __SHAPE_H__
#define __SHAPE_H__
@@ -26,8 +26,8 @@
#include <Exceptions.h>
#include <BString.h>
#include <mcolor.h>
-#include <Texture.h>
-#include <Font.h>
+#include <texture.h>
+#include <font.h>
namespace mogltk {
typedef enum {
diff --git a/include/sprite.h b/include/sprite.h
index 6263ada..32ee119 100644
--- a/include/sprite.h
+++ b/include/sprite.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: sprite.h,v 1.14 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: sprite.h,v 1.15 2007-07-27 14:10:19 pixel Exp $ */
#ifndef __SPRITE_H__
#define __SPRITE_H__
@@ -26,7 +26,7 @@
#include <Exceptions.h>
#include <Handle.h>
#include <mcolor.h>
-#include <Texture.h>
+#include <texture.h>
namespace mogltk {
class Sprite : public Base {
diff --git a/include/widgets.h b/include/widgets.h
index f808981..c471d5d 100644
--- a/include/widgets.h
+++ b/include/widgets.h
@@ -17,13 +17,13 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: widgets.h,v 1.17 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: widgets.h,v 1.18 2007-07-27 14:10:19 pixel Exp $ */
#ifndef __WIDGETS_H__
#define __WIDGETS_H__
#include <Exceptions.h>
-#include <Shape.h>
+#include <shape.h>
#include <base.h>
#include <engine.h>
diff --git a/lib/base.cc b/lib/base.cc
index a9d31a5..c8d1d80 100644
--- a/lib/base.cc
+++ b/lib/base.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: base.cc,v 1.17 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: base.cc,v 1.18 2007-07-27 14:10:19 pixel Exp $ */
#include <stdio.h>
#include <SDL.h>
diff --git a/lib/contextmenu.cc b/lib/contextmenu.cc
index 97cec1e..1d6380c 100644
--- a/lib/contextmenu.cc
+++ b/lib/contextmenu.cc
@@ -17,14 +17,14 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: contextmenu.cc,v 1.3 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: contextmenu.cc,v 1.4 2007-07-27 14:10:19 pixel Exp $ */
#include <SDL.h>
#include <vector>
#include <Input.h>
-#include "Font.h"
+#include "font.h"
#include "engine.h"
-#include "Widgets.h"
+#include "widgets.h"
#include "sprite.h"
/***********************************
diff --git a/lib/engine.cc b/lib/engine.cc
index d49574c..eef9f98 100644
--- a/lib/engine.cc
+++ b/lib/engine.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: engine.cc,v 1.31 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: engine.cc,v 1.32 2007-07-27 14:10:19 pixel Exp $ */
#include <SDL.h>
#include <Input.h>
diff --git a/lib/font.cc b/lib/font.cc
index fbd871d..324debd 100644
--- a/lib/font.cc
+++ b/lib/font.cc
@@ -17,13 +17,13 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: font.cc,v 1.19 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: font.cc,v 1.20 2007-07-27 14:10:19 pixel Exp $ */
#include <stdarg.h>
#include <SDL.h>
#include <Input.h>
#include "base.h"
-#include "Font.h"
+#include "font.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/lib/glbase.cc b/lib/glbase.cc
index 922a263..7665bb1 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.24 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glbase.cc,v 1.25 2007-07-27 14:10:19 pixel Exp $ */
#include <stdio.h>
#include <SDL.h>
diff --git a/lib/glfont.cc b/lib/glfont.cc
index 4bc9a0e..6ea33e6 100644
--- a/lib/glfont.cc
+++ b/lib/glfont.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glfont.cc,v 1.26 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glfont.cc,v 1.27 2007-07-27 14:10:20 pixel Exp $ */
#include "engine.h"
#include "glbase.h"
diff --git a/lib/glshape.cc b/lib/glshape.cc
index 6c0b2d9..66b6093 100644
--- a/lib/glshape.cc
+++ b/lib/glshape.cc
@@ -17,12 +17,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glshape.cc,v 1.17 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glshape.cc,v 1.18 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL_opengl.h>
#include "glbase.h"
-#include "glShape.h"
-#include "Texture.h"
+#include "glshape.h"
+#include "texture.h"
#include "glfont.h"
#include "engine.h"
diff --git a/lib/glsprite.cc b/lib/glsprite.cc
index 49db695..31193df 100644
--- a/lib/glsprite.cc
+++ b/lib/glsprite.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glsprite.cc,v 1.11 2004-11-27 21:48:03 pixel Exp $ */
+/* $Id: glsprite.cc,v 1.12 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include "glbase.h"
diff --git a/lib/glwidgets.cc b/lib/glwidgets.cc
index c306b73..83c2aa9 100644
--- a/lib/glwidgets.cc
+++ b/lib/glwidgets.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: glwidgets.cc,v 1.10 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: glwidgets.cc,v 1.11 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include <SDL_opengl.h>
diff --git a/lib/inputtext.cc b/lib/inputtext.cc
index 9a63c07..23b05a1 100644
--- a/lib/inputtext.cc
+++ b/lib/inputtext.cc
@@ -17,14 +17,14 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: inputtext.cc,v 1.4 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: inputtext.cc,v 1.5 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include <vector>
#include <Input.h>
-#include "Font.h"
+#include "font.h"
#include "engine.h"
-#include "Widgets.h"
+#include "widgets.h"
#include "sprite.h"
/**********************
diff --git a/lib/mcolor.cc b/lib/mcolor.cc
index a8c6d16..979827f 100644
--- a/lib/mcolor.cc
+++ b/lib/mcolor.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: mcolor.cc,v 1.10 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: mcolor.cc,v 1.11 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include <SDL_opengl.h>
diff --git a/lib/mogltk-lua-bindings.cc b/lib/mogltk-lua-bindings.cc
index fc32beb..086bc09 100644
--- a/lib/mogltk-lua-bindings.cc
+++ b/lib/mogltk-lua-bindings.cc
@@ -17,6 +17,6 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: mogltk-lua-bindings.cc,v 1.1 2006-02-09 17:12:44 pixel Exp $ */
+/* $Id: mogltk-lua-bindings.cc,v 1.2 2007-07-27 14:10:20 pixel Exp $ */
#include <mogltk-lua-bindings.h> \ No newline at end of file
diff --git a/lib/shape.cc b/lib/shape.cc
index d817895..d5f6ccc 100644
--- a/lib/shape.cc
+++ b/lib/shape.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: shape.cc,v 1.22 2006-10-28 16:50:46 pixel Exp $ */
+/* $Id: shape.cc,v 1.23 2007-07-27 14:10:20 pixel Exp $ */
#include <math.h>
#include <limits.h>
@@ -26,9 +26,9 @@
#include <generic.h>
#include "engine.h"
#include "base.h"
-#include "Shape.h"
-#include "Texture.h"
-#include "Font.h"
+#include "shape.h"
+#include "texture.h"
+#include "font.h"
#define ENTER bool flag = Enter()
#define LEAVE Leave(flag)
diff --git a/lib/sprite.cc b/lib/sprite.cc
index 8b93a0f..7066a76 100644
--- a/lib/sprite.cc
+++ b/lib/sprite.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: sprite.cc,v 1.17 2006-10-28 16:50:47 pixel Exp $ */
+/* $Id: sprite.cc,v 1.18 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include "engine.h"
diff --git a/lib/texture.cc b/lib/texture.cc
index edcc303..52f0743 100644
--- a/lib/texture.cc
+++ b/lib/texture.cc
@@ -17,13 +17,13 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: texture.cc,v 1.16 2007-07-17 02:48:00 pixel Exp $ */
+/* $Id: texture.cc,v 1.17 2007-07-27 14:10:20 pixel Exp $ */
#include <sys/types.h>
#include <SDL.h>
#include <SDL_opengl.h>
#include <generic.h>
-#include "Texture.h"
+#include "texture.h"
#include "engine.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
diff --git a/lib/widgets.cc b/lib/widgets.cc
index 5fd76e2..639a67f 100644
--- a/lib/widgets.cc
+++ b/lib/widgets.cc
@@ -17,14 +17,14 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: widgets.cc,v 1.21 2006-10-28 16:50:47 pixel Exp $ */
+/* $Id: widgets.cc,v 1.22 2007-07-27 14:10:20 pixel Exp $ */
#include <SDL.h>
#include <vector>
#include <Input.h>
-#include "Font.h"
+#include "font.h"
#include "engine.h"
-#include "Widgets.h"
+#include "widgets.h"
#include "sprite.h"
#ifdef HAVE_CONFIG_H