summaryrefslogtreecommitdiff
path: root/include
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 /include
parent843a14ea70938381fc61cd9054f0b30bb08c990e (diff)
Win32 is evil, and doesn't have case sensitive filenames...
Diffstat (limited to 'include')
-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
10 files changed, 22 insertions, 22 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>