From ee8d48447080a6594f490f77390fae9ece5c606c Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Fri, 25 Oct 2013 20:48:44 +0200 Subject: [PATCH] [DEV] update Debug in debug --- agg/agg_color_rgba.h | 2 +- draw/Color.cpp | 2 +- draw/Image.h | 2 +- draw/{Debug.cpp => debug.cpp} | 4 ++-- draw/{Debug.h => debug.h} | 4 ++-- lutin_agg.py | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) rename draw/{Debug.cpp => debug.cpp} (93%) rename draw/{Debug.h => debug.h} (96%) diff --git a/agg/agg_color_rgba.h b/agg/agg_color_rgba.h index a372ab0..9439ecc 100644 --- a/agg/agg_color_rgba.h +++ b/agg/agg_color_rgba.h @@ -35,7 +35,7 @@ namespace draw { void parseColor(const char* _input, struct agg::rgba8& color); } -#include +#include namespace agg { diff --git a/draw/Color.cpp b/draw/Color.cpp index 946f787..1595798 100644 --- a/draw/Color.cpp +++ b/draw/Color.cpp @@ -25,7 +25,7 @@ #include #include #include -#include +#include const draw::Color draw::color::none((uint32_t)0x00000000); diff --git a/draw/Image.h b/draw/Image.h index 5c7beaf..c4b7574 100644 --- a/draw/Image.h +++ b/draw/Image.h @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/draw/Debug.cpp b/draw/debug.cpp similarity index 93% rename from draw/Debug.cpp rename to draw/debug.cpp index e1b3fc0..14c0bd8 100644 --- a/draw/Debug.cpp +++ b/draw/debug.cpp @@ -1,6 +1,6 @@ /** ******************************************************************************* - * @file draw/Debug.h + * @file draw/debug.h * @brief draw : log wrapper (header) * @author Edouard DUPIN * @date 21/08/2012 @@ -23,6 +23,6 @@ */ -#include +#include const char * drawLibName = "draw "; diff --git a/draw/Debug.h b/draw/debug.h similarity index 96% rename from draw/Debug.h rename to draw/debug.h index 1d8738c..165a0d6 100644 --- a/draw/Debug.h +++ b/draw/debug.h @@ -1,6 +1,6 @@ /** ******************************************************************************* - * @file draw/Debug.h + * @file draw/debug.h * @brief draw : log wrapper (Sources) * @author Edouard DUPIN * @date 21/08/2012 @@ -26,7 +26,7 @@ #define __DRAW_DEBUG_H__ #include -#include +#include extern const char * drawLibName; diff --git a/lutin_agg.py b/lutin_agg.py index ce6337c..1ef7675 100644 --- a/lutin_agg.py +++ b/lutin_agg.py @@ -45,7 +45,7 @@ def Create(target): #ewol abstraction of the graphic librairies : myModule.AddSrcFile([ - 'draw/Debug.cpp', + 'draw/debug.cpp', 'draw/Color.cpp', 'draw/Image.cpp'])