From 8f291a74be65fa6a543a734c4fd0c2375a36aecf Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Sat, 28 Dec 2013 14:21:25 +0100 Subject: [PATCH] [DEV] update to the etk normalisation --- ege/Environement.h | 2 +- ege/Particule.h | 2 +- ege/ParticuleEngine.h | 2 +- ege/ParticuleSimple.h | 2 +- ege/physicsShape/PhysicsShape.cpp | 2 +- ege/physicsShape/PhysicsShape.h | 2 +- ege/resource/Mesh.cpp | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ege/Environement.h b/ege/Environement.h index 76c076b..bf2fd79 100644 --- a/ege/Environement.h +++ b/ege/Environement.h @@ -15,7 +15,7 @@ namespace ege { }; #include -#include +#include #include class btDynamicsWorld; diff --git a/ege/Particule.h b/ege/Particule.h index 2522e83..a073a1b 100644 --- a/ege/Particule.h +++ b/ege/Particule.h @@ -13,7 +13,7 @@ namespace ege { class Particule; }; -#include +#include #include #include diff --git a/ege/ParticuleEngine.h b/ege/ParticuleEngine.h index 8eca1fc..39b9354 100644 --- a/ege/ParticuleEngine.h +++ b/ege/ParticuleEngine.h @@ -15,7 +15,7 @@ namespace ege { class ParticuleEngine; }; -#include +#include #include #include diff --git a/ege/ParticuleSimple.h b/ege/ParticuleSimple.h index ade2722..134e73f 100644 --- a/ege/ParticuleSimple.h +++ b/ege/ParticuleSimple.h @@ -13,7 +13,7 @@ namespace ege { class ParticuleSimple; }; -#include +#include #include #include #include diff --git a/ege/physicsShape/PhysicsShape.cpp b/ege/physicsShape/PhysicsShape.cpp index cf85c29..426e744 100644 --- a/ege/physicsShape/PhysicsShape.cpp +++ b/ege/physicsShape/PhysicsShape.cpp @@ -17,7 +17,7 @@ ege::PhysicsShape* ege::PhysicsShape::create(const std::string& _name) { ege::PhysicsShape* tmpp = NULL; - std::string name = to_lower(_name); + std::string name = std::tolower(_name); if (name == "box") { tmpp = new ege::PhysicsBox(); } else if (name == "sphere") { diff --git a/ege/physicsShape/PhysicsShape.h b/ege/physicsShape/PhysicsShape.h index 019afcb..bdd71e9 100644 --- a/ege/physicsShape/PhysicsShape.h +++ b/ege/physicsShape/PhysicsShape.h @@ -11,7 +11,7 @@ #include -#include +#include #include #include diff --git a/ege/resource/Mesh.cpp b/ege/resource/Mesh.cpp index 43f222d..fbce16d 100644 --- a/ege/resource/Mesh.cpp +++ b/ege/resource/Mesh.cpp @@ -47,7 +47,7 @@ ege::resource::Mesh::Mesh(const std::string& _fileName, const std::string& _shad m_verticesVBO = ewol::resource::VirtualBufferObject::keep(4); // load the curent file : - std::string tmpName = to_lower(_fileName); + std::string tmpName = std::tolower(_fileName); // select the corect loader : if (end_with(tmpName, ".obj") == true) { if (loadOBJ(_fileName) == false) {