From 121e7c772cfc7b3e1305a03144264fc5b66564c2 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Thu, 26 Jul 2012 15:06:06 +0100 Subject: [PATCH] Rename .inc files to inl --- src/graphics/{OpenGLDrawMethods.inc => OpenGLDrawMethods.inl} | 0 src/graphics/OpenGLGraphics.cpp | 2 +- src/graphics/{RasterDrawMethods.inc => RasterDrawMethods.inl} | 0 src/graphics/RasterGraphics.cpp | 2 +- src/graphics/Renderer.cpp | 4 ++-- 5 files changed, 4 insertions(+), 4 deletions(-) rename src/graphics/{OpenGLDrawMethods.inc => OpenGLDrawMethods.inl} (100%) rename src/graphics/{RasterDrawMethods.inc => RasterDrawMethods.inl} (100%) diff --git a/src/graphics/OpenGLDrawMethods.inc b/src/graphics/OpenGLDrawMethods.inl similarity index 100% rename from src/graphics/OpenGLDrawMethods.inc rename to src/graphics/OpenGLDrawMethods.inl diff --git a/src/graphics/OpenGLGraphics.cpp b/src/graphics/OpenGLGraphics.cpp index baef25064..66a1753b8 100644 --- a/src/graphics/OpenGLGraphics.cpp +++ b/src/graphics/OpenGLGraphics.cpp @@ -69,7 +69,7 @@ void Graphics::Finalise() #define VIDXRES XRES+BARSIZE #define VIDYRES YRES+MENUSIZE #define PIXELMETHODS_CLASS Graphics -#include "OpenGLDrawMethods.inc" +#include "OpenGLDrawMethods.inl" #undef VIDYRES #undef VIDXRES #undef PIXELMETHODS_CLASS diff --git a/src/graphics/RasterDrawMethods.inc b/src/graphics/RasterDrawMethods.inl similarity index 100% rename from src/graphics/RasterDrawMethods.inc rename to src/graphics/RasterDrawMethods.inl diff --git a/src/graphics/RasterGraphics.cpp b/src/graphics/RasterGraphics.cpp index 7567b9dd6..312f44e82 100644 --- a/src/graphics/RasterGraphics.cpp +++ b/src/graphics/RasterGraphics.cpp @@ -27,7 +27,7 @@ void Graphics::Finalise() #define VIDXRES XRES+BARSIZE #define VIDYRES YRES+MENUSIZE #define PIXELMETHODS_CLASS Graphics -#include "RasterDrawMethods.inc" +#include "RasterDrawMethods.inl" #undef VIDYRES #undef VIDXRES #undef PIXELMETHODS_CLASS diff --git a/src/graphics/Renderer.cpp b/src/graphics/Renderer.cpp index 74c2eee62..91dc0ca47 100644 --- a/src/graphics/Renderer.cpp +++ b/src/graphics/Renderer.cpp @@ -2391,9 +2391,9 @@ Renderer::~Renderer() #define PIXELMETHODS_CLASS Renderer #ifdef OGLR -#include "OpenGLDrawMethods.inc" +#include "OpenGLDrawMethods.inl" #else -#include "RasterDrawMethods.inc" +#include "RasterDrawMethods.inl" #endif #undef PIXELMETHODS_CLASS