diff --git a/Source/Samples/01_HelloWorld/HelloWorld.cpp b/Source/Samples/01_HelloWorld/HelloWorld.cpp index d2bb76673..8766daebb 100644 --- a/Source/Samples/01_HelloWorld/HelloWorld.cpp +++ b/Source/Samples/01_HelloWorld/HelloWorld.cpp @@ -30,7 +30,7 @@ #include "HelloWorld.h" -#include +#include // Expands to this example's entry-point DEFINE_APPLICATION_MAIN(HelloWorld) diff --git a/Source/Samples/02_HelloGUI/HelloGUI.cpp b/Source/Samples/02_HelloGUI/HelloGUI.cpp index 89609eafe..3df358c1e 100644 --- a/Source/Samples/02_HelloGUI/HelloGUI.cpp +++ b/Source/Samples/02_HelloGUI/HelloGUI.cpp @@ -39,7 +39,7 @@ #include "HelloGUI.h" -#include +#include DEFINE_APPLICATION_MAIN(HelloGUI) diff --git a/Source/Samples/03_Sprites/Sprites.cpp b/Source/Samples/03_Sprites/Sprites.cpp index efaf46d23..116a40e13 100644 --- a/Source/Samples/03_Sprites/Sprites.cpp +++ b/Source/Samples/03_Sprites/Sprites.cpp @@ -30,7 +30,7 @@ #include "Sprites.h" -#include +#include // Number of sprites to draw static const unsigned NUM_SPRITES = 100; diff --git a/Source/Samples/04_StaticScene/StaticScene.cpp b/Source/Samples/04_StaticScene/StaticScene.cpp index a6d1f646d..15e38d16c 100644 --- a/Source/Samples/04_StaticScene/StaticScene.cpp +++ b/Source/Samples/04_StaticScene/StaticScene.cpp @@ -38,7 +38,7 @@ #include "StaticScene.h" -#include +#include DEFINE_APPLICATION_MAIN(StaticScene) diff --git a/Source/Samples/05_AnimatingScene/AnimatingScene.cpp b/Source/Samples/05_AnimatingScene/AnimatingScene.cpp index 8c0e3c492..2edf7cf4a 100644 --- a/Source/Samples/05_AnimatingScene/AnimatingScene.cpp +++ b/Source/Samples/05_AnimatingScene/AnimatingScene.cpp @@ -40,7 +40,7 @@ #include "AnimatingScene.h" #include "Rotator.h" -#include +#include DEFINE_APPLICATION_MAIN(AnimatingScene) diff --git a/Source/Samples/05_AnimatingScene/Rotator.cpp b/Source/Samples/05_AnimatingScene/Rotator.cpp index 6315d242c..1efa4f774 100644 --- a/Source/Samples/05_AnimatingScene/Rotator.cpp +++ b/Source/Samples/05_AnimatingScene/Rotator.cpp @@ -25,7 +25,7 @@ #include "Rotator.h" -#include +#include Rotator::Rotator(Context* context) : LogicComponent(context), diff --git a/Source/Samples/06_SkeletalAnimation/Mover.cpp b/Source/Samples/06_SkeletalAnimation/Mover.cpp index 5f04eecdc..4d7e74c80 100644 --- a/Source/Samples/06_SkeletalAnimation/Mover.cpp +++ b/Source/Samples/06_SkeletalAnimation/Mover.cpp @@ -27,7 +27,7 @@ #include "Mover.h" -#include +#include Mover::Mover(Context* context) : LogicComponent(context), diff --git a/Source/Samples/06_SkeletalAnimation/SkeletalAnimation.cpp b/Source/Samples/06_SkeletalAnimation/SkeletalAnimation.cpp index 80de3f357..7b054c9e4 100644 --- a/Source/Samples/06_SkeletalAnimation/SkeletalAnimation.cpp +++ b/Source/Samples/06_SkeletalAnimation/SkeletalAnimation.cpp @@ -44,7 +44,7 @@ #include "Mover.h" #include "SkeletalAnimation.h" -#include +#include DEFINE_APPLICATION_MAIN(SkeletalAnimation) diff --git a/Source/Samples/07_Billboards/Billboards.cpp b/Source/Samples/07_Billboards/Billboards.cpp index 47f61166d..f814a57df 100644 --- a/Source/Samples/07_Billboards/Billboards.cpp +++ b/Source/Samples/07_Billboards/Billboards.cpp @@ -42,7 +42,7 @@ #include "Billboards.h" -#include +#include DEFINE_APPLICATION_MAIN(Billboards) diff --git a/Source/Samples/08_Decals/Decals.cpp b/Source/Samples/08_Decals/Decals.cpp index 73a3bd93e..a965f2058 100644 --- a/Source/Samples/08_Decals/Decals.cpp +++ b/Source/Samples/08_Decals/Decals.cpp @@ -44,7 +44,7 @@ #include "Decals.h" -#include +#include DEFINE_APPLICATION_MAIN(Decals) diff --git a/Source/Samples/09_MultipleViewports/MultipleViewports.cpp b/Source/Samples/09_MultipleViewports/MultipleViewports.cpp index 8d704c2ec..9a7d0ab8b 100644 --- a/Source/Samples/09_MultipleViewports/MultipleViewports.cpp +++ b/Source/Samples/09_MultipleViewports/MultipleViewports.cpp @@ -44,7 +44,7 @@ #include "MultipleViewports.h" -#include +#include DEFINE_APPLICATION_MAIN(MultipleViewports) diff --git a/Source/Samples/10_RenderToTexture/RenderToTexture.cpp b/Source/Samples/10_RenderToTexture/RenderToTexture.cpp index 97a3f2a40..fcbba2be4 100644 --- a/Source/Samples/10_RenderToTexture/RenderToTexture.cpp +++ b/Source/Samples/10_RenderToTexture/RenderToTexture.cpp @@ -43,7 +43,7 @@ #include "RenderToTexture.h" #include "Rotator.h" -#include +#include DEFINE_APPLICATION_MAIN(RenderToTexture) diff --git a/Source/Samples/10_RenderToTexture/Rotator.cpp b/Source/Samples/10_RenderToTexture/Rotator.cpp index 6315d242c..1efa4f774 100644 --- a/Source/Samples/10_RenderToTexture/Rotator.cpp +++ b/Source/Samples/10_RenderToTexture/Rotator.cpp @@ -25,7 +25,7 @@ #include "Rotator.h" -#include +#include Rotator::Rotator(Context* context) : LogicComponent(context), diff --git a/Source/Samples/11_Physics/Physics.cpp b/Source/Samples/11_Physics/Physics.cpp index 8842f6565..98b36d776 100644 --- a/Source/Samples/11_Physics/Physics.cpp +++ b/Source/Samples/11_Physics/Physics.cpp @@ -47,7 +47,7 @@ #include "Physics.h" -#include +#include DEFINE_APPLICATION_MAIN(Physics) diff --git a/Source/Samples/12_PhysicsStressTest/PhysicsStressTest.cpp b/Source/Samples/12_PhysicsStressTest/PhysicsStressTest.cpp index ecb0a4fd1..dc19e85e0 100644 --- a/Source/Samples/12_PhysicsStressTest/PhysicsStressTest.cpp +++ b/Source/Samples/12_PhysicsStressTest/PhysicsStressTest.cpp @@ -46,7 +46,7 @@ #include "PhysicsStressTest.h" -#include +#include DEFINE_APPLICATION_MAIN(PhysicsStressTest) diff --git a/Source/Samples/13_Ragdolls/CreateRagdoll.cpp b/Source/Samples/13_Ragdolls/CreateRagdoll.cpp index 723ff50d5..22a7b69c4 100644 --- a/Source/Samples/13_Ragdolls/CreateRagdoll.cpp +++ b/Source/Samples/13_Ragdolls/CreateRagdoll.cpp @@ -28,7 +28,7 @@ #include "CreateRagdoll.h" -#include +#include CreateRagdoll::CreateRagdoll(Context* context) : Component(context) diff --git a/Source/Samples/13_Ragdolls/Ragdolls.cpp b/Source/Samples/13_Ragdolls/Ragdolls.cpp index 84173eb65..c829706a5 100644 --- a/Source/Samples/13_Ragdolls/Ragdolls.cpp +++ b/Source/Samples/13_Ragdolls/Ragdolls.cpp @@ -47,7 +47,7 @@ #include "CreateRagdoll.h" #include "Ragdolls.h" -#include +#include DEFINE_APPLICATION_MAIN(Ragdolls) diff --git a/Source/Samples/14_SoundEffects/SoundEffects.cpp b/Source/Samples/14_SoundEffects/SoundEffects.cpp index 3c86fb280..cae0ff503 100644 --- a/Source/Samples/14_SoundEffects/SoundEffects.cpp +++ b/Source/Samples/14_SoundEffects/SoundEffects.cpp @@ -37,7 +37,7 @@ #include "SoundEffects.h" -#include +#include // Custom variable identifier for storing sound effect name within the UI element static const StringHash VAR_SOUNDRESOURCE("SoundResource"); diff --git a/Source/Samples/15_Navigation/Navigation.cpp b/Source/Samples/15_Navigation/Navigation.cpp index bd5a50775..0128b841d 100644 --- a/Source/Samples/15_Navigation/Navigation.cpp +++ b/Source/Samples/15_Navigation/Navigation.cpp @@ -46,7 +46,7 @@ #include "Navigation.h" -#include +#include DEFINE_APPLICATION_MAIN(Navigation) diff --git a/Source/Samples/16_Chat/Chat.cpp b/Source/Samples/16_Chat/Chat.cpp index ad5376cb0..4fe6f322e 100644 --- a/Source/Samples/16_Chat/Chat.cpp +++ b/Source/Samples/16_Chat/Chat.cpp @@ -43,7 +43,7 @@ #include "Chat.h" -#include +#include // Undefine Windows macro, as our Connection class has a function called SendMessage #ifdef SendMessage diff --git a/Source/Samples/17_SceneReplication/SceneReplication.cpp b/Source/Samples/17_SceneReplication/SceneReplication.cpp index 5f5beb1a7..9ecf2f81c 100644 --- a/Source/Samples/17_SceneReplication/SceneReplication.cpp +++ b/Source/Samples/17_SceneReplication/SceneReplication.cpp @@ -54,7 +54,7 @@ #include "SceneReplication.h" -#include +#include // UDP port we will use static const unsigned short SERVER_PORT = 2345; diff --git a/Source/Samples/18_CharacterDemo/CharacterDemo.cpp b/Source/Samples/18_CharacterDemo/CharacterDemo.cpp index 7d2565d90..7e2ee0e8c 100644 --- a/Source/Samples/18_CharacterDemo/CharacterDemo.cpp +++ b/Source/Samples/18_CharacterDemo/CharacterDemo.cpp @@ -49,7 +49,7 @@ #include "CharacterDemo.h" #include "Touch.h" -#include +#include DEFINE_APPLICATION_MAIN(CharacterDemo) diff --git a/Source/Samples/19_VehicleDemo/VehicleDemo.cpp b/Source/Samples/19_VehicleDemo/VehicleDemo.cpp index 6f65fc411..bb05ec05d 100644 --- a/Source/Samples/19_VehicleDemo/VehicleDemo.cpp +++ b/Source/Samples/19_VehicleDemo/VehicleDemo.cpp @@ -47,7 +47,7 @@ #include "Vehicle.h" #include "VehicleDemo.h" -#include +#include const float CAMERA_DISTANCE = 10.0f; diff --git a/Source/Samples/20_HugeObjectCount/HugeObjectCount.cpp b/Source/Samples/20_HugeObjectCount/HugeObjectCount.cpp index 721327cff..6a2b2f7f1 100644 --- a/Source/Samples/20_HugeObjectCount/HugeObjectCount.cpp +++ b/Source/Samples/20_HugeObjectCount/HugeObjectCount.cpp @@ -40,7 +40,7 @@ #include "HugeObjectCount.h" -#include +#include DEFINE_APPLICATION_MAIN(HugeObjectCount) diff --git a/Source/Samples/21_AngelScriptIntegration/AngelScriptIntegration.cpp b/Source/Samples/21_AngelScriptIntegration/AngelScriptIntegration.cpp index 3028ca773..1cd96b948 100644 --- a/Source/Samples/21_AngelScriptIntegration/AngelScriptIntegration.cpp +++ b/Source/Samples/21_AngelScriptIntegration/AngelScriptIntegration.cpp @@ -42,7 +42,7 @@ #include "AngelScriptIntegration.h" -#include +#include DEFINE_APPLICATION_MAIN(AngelScriptIntegration) diff --git a/Source/Samples/22_LuaIntegration/LuaIntegration.cpp b/Source/Samples/22_LuaIntegration/LuaIntegration.cpp index 5240570ac..381874e0a 100644 --- a/Source/Samples/22_LuaIntegration/LuaIntegration.cpp +++ b/Source/Samples/22_LuaIntegration/LuaIntegration.cpp @@ -43,7 +43,7 @@ #include "LuaIntegration.h" -#include +#include DEFINE_APPLICATION_MAIN(LuaIntegration) diff --git a/Source/Samples/23_Water/Water.cpp b/Source/Samples/23_Water/Water.cpp index 903d0105a..55dd4b44d 100644 --- a/Source/Samples/23_Water/Water.cpp +++ b/Source/Samples/23_Water/Water.cpp @@ -46,7 +46,7 @@ #include "Water.h" -#include +#include DEFINE_APPLICATION_MAIN(Water) diff --git a/Source/Samples/24_Urho2DSprite/Urho2DSprite.cpp b/Source/Samples/24_Urho2DSprite/Urho2DSprite.cpp index 000bd20d9..7f3f7f38f 100644 --- a/Source/Samples/24_Urho2DSprite/Urho2DSprite.cpp +++ b/Source/Samples/24_Urho2DSprite/Urho2DSprite.cpp @@ -39,7 +39,7 @@ #include "Urho2DSprite.h" -#include +#include // Number of static sprites to draw static const unsigned NUM_SPRITES = 200; diff --git a/Source/Samples/25_Urho2DParticle/Urho2DParticle.cpp b/Source/Samples/25_Urho2DParticle/Urho2DParticle.cpp index d2e097fd3..08c9fead2 100644 --- a/Source/Samples/25_Urho2DParticle/Urho2DParticle.cpp +++ b/Source/Samples/25_Urho2DParticle/Urho2DParticle.cpp @@ -38,7 +38,7 @@ #include "Urho2DParticle.h" -#include +#include DEFINE_APPLICATION_MAIN(Urho2DParticle) diff --git a/Source/Samples/26_ConsoleInput/ConsoleInput.cpp b/Source/Samples/26_ConsoleInput/ConsoleInput.cpp index b7d56e27c..1a194f623 100644 --- a/Source/Samples/26_ConsoleInput/ConsoleInput.cpp +++ b/Source/Samples/26_ConsoleInput/ConsoleInput.cpp @@ -33,7 +33,7 @@ #include "ConsoleInput.h" -#include +#include // Expands to this example's entry-point DEFINE_APPLICATION_MAIN(ConsoleInput) diff --git a/Source/Samples/27_Urho2DPhysics/Urho2DPhysics.cpp b/Source/Samples/27_Urho2DPhysics/Urho2DPhysics.cpp index 9051df34b..e6ef79fab 100644 --- a/Source/Samples/27_Urho2DPhysics/Urho2DPhysics.cpp +++ b/Source/Samples/27_Urho2DPhysics/Urho2DPhysics.cpp @@ -43,7 +43,7 @@ #include "Urho2DPhysics.h" -#include +#include DEFINE_APPLICATION_MAIN(Urho2DPhysics) diff --git a/Source/Samples/28_Urho2DPhysicsRope/Urho2DPhysicsRope.cpp b/Source/Samples/28_Urho2DPhysicsRope/Urho2DPhysicsRope.cpp index 979b723ce..b0a97cd7e 100644 --- a/Source/Samples/28_Urho2DPhysicsRope/Urho2DPhysicsRope.cpp +++ b/Source/Samples/28_Urho2DPhysicsRope/Urho2DPhysicsRope.cpp @@ -41,7 +41,7 @@ #include "Urho2DPhysicsRope.h" -#include +#include DEFINE_APPLICATION_MAIN(Urho2DPhysicsRope) diff --git a/Source/Samples/29_SoundSynthesis/SoundSynthesis.cpp b/Source/Samples/29_SoundSynthesis/SoundSynthesis.cpp index c38247b7f..c0e376f21 100644 --- a/Source/Samples/29_SoundSynthesis/SoundSynthesis.cpp +++ b/Source/Samples/29_SoundSynthesis/SoundSynthesis.cpp @@ -33,7 +33,7 @@ #include "SoundSynthesis.h" -#include +#include // Expands to this example's entry-point DEFINE_APPLICATION_MAIN(SoundSynthesis) diff --git a/Source/Samples/30_LightAnimation/LightAnimation.cpp b/Source/Samples/30_LightAnimation/LightAnimation.cpp index c61008416..8a3148411 100644 --- a/Source/Samples/30_LightAnimation/LightAnimation.cpp +++ b/Source/Samples/30_LightAnimation/LightAnimation.cpp @@ -41,7 +41,7 @@ #include "LightAnimation.h" -#include +#include DEFINE_APPLICATION_MAIN(LightAnimation) diff --git a/Source/Samples/31_MaterialAnimation/MaterialAnimation.cpp b/Source/Samples/31_MaterialAnimation/MaterialAnimation.cpp index f3f9924cc..a852c48ba 100644 --- a/Source/Samples/31_MaterialAnimation/MaterialAnimation.cpp +++ b/Source/Samples/31_MaterialAnimation/MaterialAnimation.cpp @@ -39,7 +39,7 @@ #include "MaterialAnimation.h" -#include +#include DEFINE_APPLICATION_MAIN(MaterialAnimation) diff --git a/Source/Samples/32_Urho2DConstraints/Urho2DConstraints.cpp b/Source/Samples/32_Urho2DConstraints/Urho2DConstraints.cpp index eae72a44d..bffc42fdc 100644 --- a/Source/Samples/32_Urho2DConstraints/Urho2DConstraints.cpp +++ b/Source/Samples/32_Urho2DConstraints/Urho2DConstraints.cpp @@ -37,7 +37,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/Source/Samples/33_Urho2DSpriterAnimation/Urho2DSpriterAnimation.cpp b/Source/Samples/33_Urho2DSpriterAnimation/Urho2DSpriterAnimation.cpp index 01b3346f2..e28bd0d0c 100644 --- a/Source/Samples/33_Urho2DSpriterAnimation/Urho2DSpriterAnimation.cpp +++ b/Source/Samples/33_Urho2DSpriterAnimation/Urho2DSpriterAnimation.cpp @@ -38,7 +38,7 @@ #include "Urho2DSpriterAnimation.h" -#include +#include static const char* animationNames[] = { diff --git a/Source/Samples/34_DynamicGeometry/DynamicGeometry.cpp b/Source/Samples/34_DynamicGeometry/DynamicGeometry.cpp index 171e04c3e..a19ecb7a8 100644 --- a/Source/Samples/34_DynamicGeometry/DynamicGeometry.cpp +++ b/Source/Samples/34_DynamicGeometry/DynamicGeometry.cpp @@ -44,7 +44,7 @@ #include "DynamicGeometry.h" -#include +#include DEFINE_APPLICATION_MAIN(DynamicGeometry) diff --git a/Source/Samples/35_SignedDistanceFieldText/SignedDistanceFieldText.cpp b/Source/Samples/35_SignedDistanceFieldText/SignedDistanceFieldText.cpp index 417b150ac..0bfa09e6e 100644 --- a/Source/Samples/35_SignedDistanceFieldText/SignedDistanceFieldText.cpp +++ b/Source/Samples/35_SignedDistanceFieldText/SignedDistanceFieldText.cpp @@ -39,7 +39,7 @@ #include "SignedDistanceFieldText.h" -#include +#include DEFINE_APPLICATION_MAIN(SignedDistanceFieldText) diff --git a/Source/Samples/36_Urho2DTileMap/Urho2DTileMap.cpp b/Source/Samples/36_Urho2DTileMap/Urho2DTileMap.cpp index f22b6dac6..632e98b49 100644 --- a/Source/Samples/36_Urho2DTileMap/Urho2DTileMap.cpp +++ b/Source/Samples/36_Urho2DTileMap/Urho2DTileMap.cpp @@ -38,7 +38,7 @@ #include "Urho2DTileMap.h" -#include +#include DEFINE_APPLICATION_MAIN(Urho2DTileMap) diff --git a/Source/Samples/37_UIDrag/UIDrag.cpp b/Source/Samples/37_UIDrag/UIDrag.cpp index ce34b5f47..57f9e242c 100644 --- a/Source/Samples/37_UIDrag/UIDrag.cpp +++ b/Source/Samples/37_UIDrag/UIDrag.cpp @@ -28,7 +28,7 @@ #include "UIDrag.h" -#include +#include DEFINE_APPLICATION_MAIN(UIDrag) diff --git a/Source/Samples/38_SceneAndUILoad/SceneAndUILoad.cpp b/Source/Samples/38_SceneAndUILoad/SceneAndUILoad.cpp index 3d1335b8f..10cbfc565 100644 --- a/Source/Samples/38_SceneAndUILoad/SceneAndUILoad.cpp +++ b/Source/Samples/38_SceneAndUILoad/SceneAndUILoad.cpp @@ -36,7 +36,7 @@ #include "SceneAndUILoad.h" -#include +#include DEFINE_APPLICATION_MAIN(SceneAndUILoad) diff --git a/Source/Tools/AssetImporter/AssetImporter.cpp b/Source/Tools/AssetImporter/AssetImporter.cpp index 20b9c5abc..9d9566319 100644 --- a/Source/Tools/AssetImporter/AssetImporter.cpp +++ b/Source/Tools/AssetImporter/AssetImporter.cpp @@ -60,7 +60,7 @@ #include -#include +#include using namespace Urho3D; diff --git a/Source/Tools/OgreImporter/OgreImporter.cpp b/Source/Tools/OgreImporter/OgreImporter.cpp index cae02d028..1c0d67c18 100644 --- a/Source/Tools/OgreImporter/OgreImporter.cpp +++ b/Source/Tools/OgreImporter/OgreImporter.cpp @@ -38,7 +38,7 @@ #include #include -#include +#include static const int VERTEX_CACHE_SIZE = 32; diff --git a/Source/Tools/PackageTool/PackageTool.cpp b/Source/Tools/PackageTool/PackageTool.cpp index 6c33f7a3f..69ff7414e 100644 --- a/Source/Tools/PackageTool/PackageTool.cpp +++ b/Source/Tools/PackageTool/PackageTool.cpp @@ -35,7 +35,7 @@ #include #include -#include +#include using namespace Urho3D; diff --git a/Source/Tools/RampGenerator/RampGenerator.cpp b/Source/Tools/RampGenerator/RampGenerator.cpp index 58db25ce1..355de0719 100644 --- a/Source/Tools/RampGenerator/RampGenerator.cpp +++ b/Source/Tools/RampGenerator/RampGenerator.cpp @@ -32,7 +32,7 @@ #include #include -#include +#include using namespace Urho3D; diff --git a/Source/Tools/ScriptCompiler/ScriptCompiler.cpp b/Source/Tools/ScriptCompiler/ScriptCompiler.cpp index b014812e0..b981c165f 100644 --- a/Source/Tools/ScriptCompiler/ScriptCompiler.cpp +++ b/Source/Tools/ScriptCompiler/ScriptCompiler.cpp @@ -38,7 +38,7 @@ #include #endif -#include +#include using namespace Urho3D; diff --git a/Source/Tools/Urho3DPlayer/Urho3DPlayer.cpp b/Source/Tools/Urho3DPlayer/Urho3DPlayer.cpp index 43528660f..138cf4df9 100644 --- a/Source/Tools/Urho3DPlayer/Urho3DPlayer.cpp +++ b/Source/Tools/Urho3DPlayer/Urho3DPlayer.cpp @@ -39,7 +39,7 @@ #include "Urho3DPlayer.h" -#include +#include DEFINE_APPLICATION_MAIN(Urho3DPlayer); diff --git a/Source/Urho3D/Audio/Audio.cpp b/Source/Urho3D/Audio/Audio.cpp index 78cba581a..8b697e00d 100644 --- a/Source/Urho3D/Audio/Audio.cpp +++ b/Source/Urho3D/Audio/Audio.cpp @@ -34,7 +34,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Audio/BufferedSoundStream.cpp b/Source/Urho3D/Audio/BufferedSoundStream.cpp index 51de5b190..1c72f68da 100644 --- a/Source/Urho3D/Audio/BufferedSoundStream.cpp +++ b/Source/Urho3D/Audio/BufferedSoundStream.cpp @@ -25,7 +25,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Audio/OggVorbisSoundStream.cpp b/Source/Urho3D/Audio/OggVorbisSoundStream.cpp index e69c3f78a..593f09706 100644 --- a/Source/Urho3D/Audio/OggVorbisSoundStream.cpp +++ b/Source/Urho3D/Audio/OggVorbisSoundStream.cpp @@ -26,7 +26,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Audio/Sound.cpp b/Source/Urho3D/Audio/Sound.cpp index 2211d52ca..36badd459 100644 --- a/Source/Urho3D/Audio/Sound.cpp +++ b/Source/Urho3D/Audio/Sound.cpp @@ -33,7 +33,7 @@ #include #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Audio/SoundListener.cpp b/Source/Urho3D/Audio/SoundListener.cpp index 6e92ece72..4c4e5dadb 100644 --- a/Source/Urho3D/Audio/SoundListener.cpp +++ b/Source/Urho3D/Audio/SoundListener.cpp @@ -24,7 +24,7 @@ #include "../Core/Context.h" #include "../Audio/SoundListener.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Audio/SoundSource.cpp b/Source/Urho3D/Audio/SoundSource.cpp index db9f850b4..e6c247172 100644 --- a/Source/Urho3D/Audio/SoundSource.cpp +++ b/Source/Urho3D/Audio/SoundSource.cpp @@ -30,7 +30,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Audio/SoundSource3D.cpp b/Source/Urho3D/Audio/SoundSource3D.cpp index be0715da8..03ff7abc0 100644 --- a/Source/Urho3D/Audio/SoundSource3D.cpp +++ b/Source/Urho3D/Audio/SoundSource3D.cpp @@ -29,7 +29,7 @@ #include "../Audio/SoundListener.h" #include "../Audio/SoundSource3D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Audio/SoundStream.cpp b/Source/Urho3D/Audio/SoundStream.cpp index 2e8888277..1b20ae618 100644 --- a/Source/Urho3D/Audio/SoundStream.cpp +++ b/Source/Urho3D/Audio/SoundStream.cpp @@ -23,7 +23,7 @@ #include "Precompiled.h" #include "../Audio/SoundStream.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Container/Allocator.cpp b/Source/Urho3D/Container/Allocator.cpp index 66b439d07..4fc2f1832 100644 --- a/Source/Urho3D/Container/Allocator.cpp +++ b/Source/Urho3D/Container/Allocator.cpp @@ -25,7 +25,7 @@ #include "stdio.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Container/HashBase.cpp b/Source/Urho3D/Container/HashBase.cpp index f6654ac39..b95269a44 100644 --- a/Source/Urho3D/Container/HashBase.cpp +++ b/Source/Urho3D/Container/HashBase.cpp @@ -23,7 +23,7 @@ #include "Precompiled.h" #include "../Container/HashBase.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Container/RefCounted.cpp b/Source/Urho3D/Container/RefCounted.cpp index 7e52e7b21..6b72745f8 100644 --- a/Source/Urho3D/Container/RefCounted.cpp +++ b/Source/Urho3D/Container/RefCounted.cpp @@ -25,7 +25,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Container/Str.cpp b/Source/Urho3D/Container/Str.cpp index c18623238..9fc4cc138 100644 --- a/Source/Urho3D/Container/Str.cpp +++ b/Source/Urho3D/Container/Str.cpp @@ -26,7 +26,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Container/VectorBase.cpp b/Source/Urho3D/Container/VectorBase.cpp index 3ca8e9de6..718f33b5a 100644 --- a/Source/Urho3D/Container/VectorBase.cpp +++ b/Source/Urho3D/Container/VectorBase.cpp @@ -23,7 +23,7 @@ #include "Precompiled.h" #include "../Container/VectorBase.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Core/Context.cpp b/Source/Urho3D/Core/Context.cpp index 9660f6f38..d8987086c 100644 --- a/Source/Urho3D/Core/Context.cpp +++ b/Source/Urho3D/Core/Context.cpp @@ -24,7 +24,7 @@ #include "../Core/Context.h" #include "../Core/Thread.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Core/Mutex.cpp b/Source/Urho3D/Core/Mutex.cpp index 7d38056bd..0fdc3899f 100644 --- a/Source/Urho3D/Core/Mutex.cpp +++ b/Source/Urho3D/Core/Mutex.cpp @@ -29,7 +29,7 @@ #include #endif -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Core/Object.cpp b/Source/Urho3D/Core/Object.cpp index 6dc827071..767d8cef7 100644 --- a/Source/Urho3D/Core/Object.cpp +++ b/Source/Urho3D/Core/Object.cpp @@ -25,7 +25,7 @@ #include "../IO/Log.h" #include "../Core/Thread.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Core/ProcessUtils.cpp b/Source/Urho3D/Core/ProcessUtils.cpp index 879e01ef3..d00cd9111 100644 --- a/Source/Urho3D/Core/ProcessUtils.cpp +++ b/Source/Urho3D/Core/ProcessUtils.cpp @@ -73,7 +73,7 @@ inline void SetFPUState(unsigned control) } #endif -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Core/Profiler.cpp b/Source/Urho3D/Core/Profiler.cpp index 206aae8eb..6cb7cb7de 100644 --- a/Source/Urho3D/Core/Profiler.cpp +++ b/Source/Urho3D/Core/Profiler.cpp @@ -27,7 +27,7 @@ #include #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Core/StringUtils.cpp b/Source/Urho3D/Core/StringUtils.cpp index 6122298b2..a327646f1 100644 --- a/Source/Urho3D/Core/StringUtils.cpp +++ b/Source/Urho3D/Core/StringUtils.cpp @@ -25,7 +25,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Core/Thread.cpp b/Source/Urho3D/Core/Thread.cpp index 41c38771f..1df4f719c 100644 --- a/Source/Urho3D/Core/Thread.cpp +++ b/Source/Urho3D/Core/Thread.cpp @@ -29,7 +29,7 @@ #include #endif -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Core/Timer.cpp b/Source/Urho3D/Core/Timer.cpp index 159e64c88..aeedf480c 100644 --- a/Source/Urho3D/Core/Timer.cpp +++ b/Source/Urho3D/Core/Timer.cpp @@ -35,7 +35,7 @@ #include #endif -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Container/DebugNew.h b/Source/Urho3D/DebugNew.h similarity index 100% rename from Source/Urho3D/Container/DebugNew.h rename to Source/Urho3D/DebugNew.h diff --git a/Source/Urho3D/Engine/Application.cpp b/Source/Urho3D/Engine/Application.cpp index c1335fc59..3aa2a2761 100644 --- a/Source/Urho3D/Engine/Application.cpp +++ b/Source/Urho3D/Engine/Application.cpp @@ -33,7 +33,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Engine/Console.cpp b/Source/Urho3D/Engine/Console.cpp index 3e4d92158..4f5ee1d1c 100644 --- a/Source/Urho3D/Engine/Console.cpp +++ b/Source/Urho3D/Engine/Console.cpp @@ -41,7 +41,7 @@ #include "../UI/UI.h" #include "../UI/UIEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Engine/DebugHud.cpp b/Source/Urho3D/Engine/DebugHud.cpp index 1d570821e..7804a8e2a 100644 --- a/Source/Urho3D/Engine/DebugHud.cpp +++ b/Source/Urho3D/Engine/DebugHud.cpp @@ -32,7 +32,7 @@ #include "../UI/Text.h" #include "../UI/UI.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Engine/Engine.cpp b/Source/Urho3D/Engine/Engine.cpp index 8cc6af329..e71ae3b6f 100644 --- a/Source/Urho3D/Engine/Engine.cpp +++ b/Source/Urho3D/Engine/Engine.cpp @@ -55,7 +55,7 @@ #include "../Core/WorkQueue.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" #if defined(_MSC_VER) && defined(_DEBUG) // From dbgint.h diff --git a/Source/Urho3D/Graphics/AnimatedModel.cpp b/Source/Urho3D/Graphics/AnimatedModel.cpp index 9c6803e9f..5e11da85d 100644 --- a/Source/Urho3D/Graphics/AnimatedModel.cpp +++ b/Source/Urho3D/Graphics/AnimatedModel.cpp @@ -42,7 +42,7 @@ #include "../Container/Sort.h" #include "../Graphics/VertexBuffer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Animation.cpp b/Source/Urho3D/Graphics/Animation.cpp index 58dc60b56..becff0ba9 100644 --- a/Source/Urho3D/Graphics/Animation.cpp +++ b/Source/Urho3D/Graphics/Animation.cpp @@ -31,7 +31,7 @@ #include "../IO/Serializer.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/AnimationController.cpp b/Source/Urho3D/Graphics/AnimationController.cpp index 156558eb7..da4e19f06 100644 --- a/Source/Urho3D/Graphics/AnimationController.cpp +++ b/Source/Urho3D/Graphics/AnimationController.cpp @@ -33,7 +33,7 @@ #include "../Scene/Scene.h" #include "../Scene/SceneEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/AnimationState.cpp b/Source/Urho3D/Graphics/AnimationState.cpp index ae91bf38e..6e96dd780 100644 --- a/Source/Urho3D/Graphics/AnimationState.cpp +++ b/Source/Urho3D/Graphics/AnimationState.cpp @@ -29,7 +29,7 @@ #include "../IO/Log.h" #include "../IO/Serializer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Batch.cpp b/Source/Urho3D/Graphics/Batch.cpp index 9c197aacf..58d1bc91c 100644 --- a/Source/Urho3D/Graphics/Batch.cpp +++ b/Source/Urho3D/Graphics/Batch.cpp @@ -38,7 +38,7 @@ #include "../Graphics/View.h" #include "../Graphics/Zone.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/BillboardSet.cpp b/Source/Urho3D/Graphics/BillboardSet.cpp index d7e6e86e3..cdc71953c 100644 --- a/Source/Urho3D/Graphics/BillboardSet.cpp +++ b/Source/Urho3D/Graphics/BillboardSet.cpp @@ -37,7 +37,7 @@ #include "../Container/Sort.h" #include "../Graphics/VertexBuffer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Camera.cpp b/Source/Urho3D/Graphics/Camera.cpp index 274eb9200..b945d52a0 100644 --- a/Source/Urho3D/Graphics/Camera.cpp +++ b/Source/Urho3D/Graphics/Camera.cpp @@ -27,7 +27,7 @@ #include "../Graphics/Drawable.h" #include "../Scene/Node.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/CustomGeometry.cpp b/Source/Urho3D/Graphics/CustomGeometry.cpp index 36c3885c6..191e4dce8 100644 --- a/Source/Urho3D/Graphics/CustomGeometry.cpp +++ b/Source/Urho3D/Graphics/CustomGeometry.cpp @@ -37,7 +37,7 @@ #include "../IO/VectorBuffer.h" #include "../Graphics/VertexBuffer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/DebugRenderer.cpp b/Source/Urho3D/Graphics/DebugRenderer.cpp index c703c090b..0ebd6fea1 100644 --- a/Source/Urho3D/Graphics/DebugRenderer.cpp +++ b/Source/Urho3D/Graphics/DebugRenderer.cpp @@ -35,7 +35,7 @@ #include "../Graphics/ShaderVariation.h" #include "../Graphics/VertexBuffer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/DecalSet.cpp b/Source/Urho3D/Graphics/DecalSet.cpp index d0c2c74fa..105880492 100644 --- a/Source/Urho3D/Graphics/DecalSet.cpp +++ b/Source/Urho3D/Graphics/DecalSet.cpp @@ -41,7 +41,7 @@ #include "../IO/VectorBuffer.h" #include "../Graphics/VertexBuffer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9GPUObject.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9GPUObject.cpp index 68561bdc0..a22069088 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9GPUObject.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9GPUObject.cpp @@ -25,7 +25,7 @@ #include "../../Graphics/GraphicsImpl.h" #include "../../Graphics/GPUObject.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9Graphics.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9Graphics.cpp index 9685ac6be..b8c279bdc 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9Graphics.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9Graphics.cpp @@ -60,7 +60,7 @@ #include -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" #ifdef _MSC_VER #pragma warning(disable:4355) diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9GraphicsImpl.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9GraphicsImpl.cpp index 97fdf8364..82209e68d 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9GraphicsImpl.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9GraphicsImpl.cpp @@ -25,7 +25,7 @@ #include "../../Graphics/GraphicsEvents.h" #include "../../Graphics/GraphicsImpl.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9IndexBuffer.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9IndexBuffer.cpp index f215a97f8..8b9eb4bf9 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9IndexBuffer.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9IndexBuffer.cpp @@ -27,7 +27,7 @@ #include "../../Graphics/IndexBuffer.h" #include "../../IO/Log.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9RenderSurface.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9RenderSurface.cpp index f62f4ef43..ca46fd423 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9RenderSurface.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9RenderSurface.cpp @@ -30,7 +30,7 @@ #include "../../Scene/Scene.h" #include "../../Graphics/Texture.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9ShaderVariation.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9ShaderVariation.cpp index b6199229b..3e4449574 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9ShaderVariation.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9ShaderVariation.cpp @@ -34,7 +34,7 @@ #include #include -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9Texture.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9Texture.cpp index 07778181b..57a0a771a 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9Texture.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9Texture.cpp @@ -31,7 +31,7 @@ #include "../../Graphics/Texture.h" #include "../../Resource/XMLFile.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9Texture2D.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9Texture2D.cpp index 07e7fb944..3fd503b91 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9Texture2D.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9Texture2D.cpp @@ -33,7 +33,7 @@ #include "../../Graphics/Texture2D.h" #include "../../Resource/XMLFile.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9Texture3D.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9Texture3D.cpp index 643b2b09d..10c2c8f2a 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9Texture3D.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9Texture3D.cpp @@ -33,7 +33,7 @@ #include "../../Graphics/Texture3D.h" #include "../../Resource/XMLFile.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9TextureCube.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9TextureCube.cpp index 082a80bf7..3c0bf9278 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9TextureCube.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9TextureCube.cpp @@ -33,7 +33,7 @@ #include "../../Graphics/TextureCube.h" #include "../../Resource/XMLFile.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" #ifdef _MSC_VER #pragma warning(disable:4355) diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9VertexBuffer.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9VertexBuffer.cpp index 02c0d42dc..ce252ede8 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9VertexBuffer.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9VertexBuffer.cpp @@ -26,7 +26,7 @@ #include "../../IO/Log.h" #include "../../Graphics/VertexBuffer.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Direct3D9/D3D9VertexDeclaration.cpp b/Source/Urho3D/Graphics/Direct3D9/D3D9VertexDeclaration.cpp index c881877bc..8ef8b3d87 100644 --- a/Source/Urho3D/Graphics/Direct3D9/D3D9VertexDeclaration.cpp +++ b/Source/Urho3D/Graphics/Direct3D9/D3D9VertexDeclaration.cpp @@ -26,7 +26,7 @@ #include "../../Graphics/VertexBuffer.h" #include "../../Graphics/VertexDeclaration.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Drawable.cpp b/Source/Urho3D/Graphics/Drawable.cpp index a31f06a95..69e57818f 100644 --- a/Source/Urho3D/Graphics/Drawable.cpp +++ b/Source/Urho3D/Graphics/Drawable.cpp @@ -33,7 +33,7 @@ #include "../Container/Sort.h" #include "../Graphics/Zone.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Geometry.cpp b/Source/Urho3D/Graphics/Geometry.cpp index b53cc9095..e463970d8 100644 --- a/Source/Urho3D/Graphics/Geometry.cpp +++ b/Source/Urho3D/Graphics/Geometry.cpp @@ -28,7 +28,7 @@ #include "../Math/Ray.h" #include "../Graphics/VertexBuffer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/GraphicsDefs.cpp b/Source/Urho3D/Graphics/GraphicsDefs.cpp index 9dc2d5ddb..91d64a9ba 100644 --- a/Source/Urho3D/Graphics/GraphicsDefs.cpp +++ b/Source/Urho3D/Graphics/GraphicsDefs.cpp @@ -24,7 +24,7 @@ #include "../Math/StringHash.h" #include "../Math/Vector3.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Light.cpp b/Source/Urho3D/Graphics/Light.cpp index e9eb83014..b39a9c9cf 100644 --- a/Source/Urho3D/Graphics/Light.cpp +++ b/Source/Urho3D/Graphics/Light.cpp @@ -33,7 +33,7 @@ #include "../Graphics/Texture2D.h" #include "../Graphics/TextureCube.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Material.cpp b/Source/Urho3D/Graphics/Material.cpp index f55787edc..b112a11ee 100644 --- a/Source/Urho3D/Graphics/Material.cpp +++ b/Source/Urho3D/Graphics/Material.cpp @@ -39,7 +39,7 @@ #include "../Scene/ValueAnimation.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Model.cpp b/Source/Urho3D/Graphics/Model.cpp index 94fa68e40..6487ca05d 100644 --- a/Source/Urho3D/Graphics/Model.cpp +++ b/Source/Urho3D/Graphics/Model.cpp @@ -34,7 +34,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/OcclusionBuffer.cpp b/Source/Urho3D/Graphics/OcclusionBuffer.cpp index e8a119c17..c0b14853f 100644 --- a/Source/Urho3D/Graphics/OcclusionBuffer.cpp +++ b/Source/Urho3D/Graphics/OcclusionBuffer.cpp @@ -27,7 +27,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Octree.cpp b/Source/Urho3D/Graphics/Octree.cpp index eb5f91ffb..865768eec 100644 --- a/Source/Urho3D/Graphics/Octree.cpp +++ b/Source/Urho3D/Graphics/Octree.cpp @@ -34,7 +34,7 @@ #include "../Core/Timer.h" #include "../Core/WorkQueue.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" #ifdef _MSC_VER #pragma warning(disable:4355) diff --git a/Source/Urho3D/Graphics/OctreeQuery.cpp b/Source/Urho3D/Graphics/OctreeQuery.cpp index e73ba3688..b9b5dbb08 100644 --- a/Source/Urho3D/Graphics/OctreeQuery.cpp +++ b/Source/Urho3D/Graphics/OctreeQuery.cpp @@ -23,7 +23,7 @@ #include "Precompiled.h" #include "../Graphics/OctreeQuery.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/OpenGL/OGLGPUObject.cpp b/Source/Urho3D/Graphics/OpenGL/OGLGPUObject.cpp index 8d312c891..d43cfd7b4 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLGPUObject.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLGPUObject.cpp @@ -24,7 +24,7 @@ #include "../../Graphics/Graphics.h" #include "../../Graphics/GPUObject.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp b/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp index c83381b22..8c1170a2d 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLGraphics.cpp @@ -62,7 +62,7 @@ #include -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" #ifdef GL_ES_VERSION_2_0 #define GL_DEPTH_COMPONENT24 GL_DEPTH_COMPONENT24_OES diff --git a/Source/Urho3D/Graphics/OpenGL/OGLGraphicsImpl.cpp b/Source/Urho3D/Graphics/OpenGL/OGLGraphicsImpl.cpp index 547959d6d..317cba0a1 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLGraphicsImpl.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLGraphicsImpl.cpp @@ -24,7 +24,7 @@ #include "../../Graphics/Graphics.h" #include "../../Graphics/GraphicsImpl.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/OpenGL/OGLIndexBuffer.cpp b/Source/Urho3D/Graphics/OpenGL/OGLIndexBuffer.cpp index 9cfe817ee..127a3eba1 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLIndexBuffer.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLIndexBuffer.cpp @@ -29,7 +29,7 @@ #include -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/OpenGL/OGLRenderSurface.cpp b/Source/Urho3D/Graphics/OpenGL/OGLRenderSurface.cpp index a0bda92d4..9adae7a30 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLRenderSurface.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLRenderSurface.cpp @@ -30,7 +30,7 @@ #include "../../Scene/Scene.h" #include "../../Graphics/Texture.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" #ifdef GL_ES_VERSION_2_0 #define GL_RENDERBUFFER_EXT GL_RENDERBUFFER diff --git a/Source/Urho3D/Graphics/OpenGL/OGLShaderProgram.cpp b/Source/Urho3D/Graphics/OpenGL/OGLShaderProgram.cpp index 28797fad7..cad326a6a 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLShaderProgram.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLShaderProgram.cpp @@ -26,7 +26,7 @@ #include "../../Graphics/ShaderProgram.h" #include "../../Graphics/ShaderVariation.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/OpenGL/OGLShaderVariation.cpp b/Source/Urho3D/Graphics/OpenGL/OGLShaderVariation.cpp index c3e558d76..1e9880012 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLShaderVariation.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLShaderVariation.cpp @@ -28,7 +28,7 @@ #include "../../Graphics/ShaderProgram.h" #include "../../Graphics/ShaderVariation.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/OpenGL/OGLTexture.cpp b/Source/Urho3D/Graphics/OpenGL/OGLTexture.cpp index d6209d4d9..08dd04fc5 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLTexture.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLTexture.cpp @@ -32,7 +32,7 @@ #include "../../Graphics/Texture.h" #include "../../Resource/XMLFile.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/OpenGL/OGLTexture2D.cpp b/Source/Urho3D/Graphics/OpenGL/OGLTexture2D.cpp index 586236f26..ce440fc7e 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLTexture2D.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLTexture2D.cpp @@ -34,7 +34,7 @@ #include "../../Graphics/Texture2D.h" #include "../../Resource/XMLFile.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/OpenGL/OGLTexture3D.cpp b/Source/Urho3D/Graphics/OpenGL/OGLTexture3D.cpp index 747a88659..8d9e3fb6c 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLTexture3D.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLTexture3D.cpp @@ -33,7 +33,7 @@ #include "../../Graphics/Texture3D.h" #include "../../Resource/XMLFile.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/OpenGL/OGLTextureCube.cpp b/Source/Urho3D/Graphics/OpenGL/OGLTextureCube.cpp index 8bb1f6818..4b84cbd4d 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLTextureCube.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLTextureCube.cpp @@ -33,7 +33,7 @@ #include "../../Graphics/TextureCube.h" #include "../../Resource/XMLFile.h" -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" #ifdef _MSC_VER #pragma warning(disable:4355) diff --git a/Source/Urho3D/Graphics/OpenGL/OGLVertexBuffer.cpp b/Source/Urho3D/Graphics/OpenGL/OGLVertexBuffer.cpp index dd45f3abd..077f0cb6b 100644 --- a/Source/Urho3D/Graphics/OpenGL/OGLVertexBuffer.cpp +++ b/Source/Urho3D/Graphics/OpenGL/OGLVertexBuffer.cpp @@ -28,7 +28,7 @@ #include -#include "../../Container/DebugNew.h" +#include "../../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/ParticleEffect.cpp b/Source/Urho3D/Graphics/ParticleEffect.cpp index 4455dc392..0f37d4cb1 100644 --- a/Source/Urho3D/Graphics/ParticleEffect.cpp +++ b/Source/Urho3D/Graphics/ParticleEffect.cpp @@ -28,7 +28,7 @@ #include "../Resource/ResourceCache.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/ParticleEmitter.cpp b/Source/Urho3D/Graphics/ParticleEmitter.cpp index 0de744511..df2d1aa3f 100644 --- a/Source/Urho3D/Graphics/ParticleEmitter.cpp +++ b/Source/Urho3D/Graphics/ParticleEmitter.cpp @@ -30,7 +30,7 @@ #include "../Scene/Scene.h" #include "../Scene/SceneEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/RenderPath.cpp b/Source/Urho3D/Graphics/RenderPath.cpp index 77f261274..6668729d2 100644 --- a/Source/Urho3D/Graphics/RenderPath.cpp +++ b/Source/Urho3D/Graphics/RenderPath.cpp @@ -28,7 +28,7 @@ #include "../Core/StringUtils.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Renderer.cpp b/Source/Urho3D/Graphics/Renderer.cpp index d3d7a4584..6f2cd34f5 100644 --- a/Source/Urho3D/Graphics/Renderer.cpp +++ b/Source/Urho3D/Graphics/Renderer.cpp @@ -47,7 +47,7 @@ #include "../Resource/XMLFile.h" #include "../Graphics/Zone.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Shader.cpp b/Source/Urho3D/Graphics/Shader.cpp index 046ad403c..4eaa558ef 100644 --- a/Source/Urho3D/Graphics/Shader.cpp +++ b/Source/Urho3D/Graphics/Shader.cpp @@ -33,7 +33,7 @@ #include "../Container/Sort.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/ShaderPrecache.cpp b/Source/Urho3D/Graphics/ShaderPrecache.cpp index c150c7942..59bd57865 100644 --- a/Source/Urho3D/Graphics/ShaderPrecache.cpp +++ b/Source/Urho3D/Graphics/ShaderPrecache.cpp @@ -29,7 +29,7 @@ #include "../Graphics/ShaderPrecache.h" #include "../Graphics/ShaderVariation.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Skeleton.cpp b/Source/Urho3D/Graphics/Skeleton.cpp index 905999ab2..5d96b6f77 100644 --- a/Source/Urho3D/Graphics/Skeleton.cpp +++ b/Source/Urho3D/Graphics/Skeleton.cpp @@ -26,7 +26,7 @@ #include "../IO/Serializer.h" #include "../Graphics/Skeleton.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Skybox.cpp b/Source/Urho3D/Graphics/Skybox.cpp index b25407c0b..940724be5 100644 --- a/Source/Urho3D/Graphics/Skybox.cpp +++ b/Source/Urho3D/Graphics/Skybox.cpp @@ -27,7 +27,7 @@ #include "../Scene/Node.h" #include "../Graphics/Skybox.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/StaticModel.cpp b/Source/Urho3D/Graphics/StaticModel.cpp index 767542bba..329ac7f45 100644 --- a/Source/Urho3D/Graphics/StaticModel.cpp +++ b/Source/Urho3D/Graphics/StaticModel.cpp @@ -36,7 +36,7 @@ #include "../Resource/ResourceCache.h" #include "../Resource/ResourceEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/StaticModelGroup.cpp b/Source/Urho3D/Graphics/StaticModelGroup.cpp index 8e8d174e6..ba323908e 100644 --- a/Source/Urho3D/Graphics/StaticModelGroup.cpp +++ b/Source/Urho3D/Graphics/StaticModelGroup.cpp @@ -31,7 +31,7 @@ #include "../Scene/Scene.h" #include "../Graphics/StaticModelGroup.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Technique.cpp b/Source/Urho3D/Graphics/Technique.cpp index 4f45b3979..c3fe19cb8 100644 --- a/Source/Urho3D/Graphics/Technique.cpp +++ b/Source/Urho3D/Graphics/Technique.cpp @@ -31,7 +31,7 @@ #include "../Graphics/ShaderVariation.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Terrain.cpp b/Source/Urho3D/Graphics/Terrain.cpp index e910be5cb..ccda30779 100644 --- a/Source/Urho3D/Graphics/Terrain.cpp +++ b/Source/Urho3D/Graphics/Terrain.cpp @@ -38,7 +38,7 @@ #include "../Graphics/TerrainPatch.h" #include "../Graphics/VertexBuffer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/TerrainPatch.cpp b/Source/Urho3D/Graphics/TerrainPatch.cpp index dcedac9b1..6b519d9ff 100644 --- a/Source/Urho3D/Graphics/TerrainPatch.cpp +++ b/Source/Urho3D/Graphics/TerrainPatch.cpp @@ -34,7 +34,7 @@ #include "../Graphics/TerrainPatch.h" #include "../Graphics/VertexBuffer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/View.cpp b/Source/Urho3D/Graphics/View.cpp index 77144f6d7..ccd76dfa0 100644 --- a/Source/Urho3D/Graphics/View.cpp +++ b/Source/Urho3D/Graphics/View.cpp @@ -46,7 +46,7 @@ #include "../Graphics/View.h" #include "../Core/WorkQueue.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Viewport.cpp b/Source/Urho3D/Graphics/Viewport.cpp index 8c851ee90..6af2ebdbe 100644 --- a/Source/Urho3D/Graphics/Viewport.cpp +++ b/Source/Urho3D/Graphics/Viewport.cpp @@ -32,7 +32,7 @@ #include "../Graphics/Viewport.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Graphics/Zone.cpp b/Source/Urho3D/Graphics/Zone.cpp index b8d4f6200..b80bce9d4 100644 --- a/Source/Urho3D/Graphics/Zone.cpp +++ b/Source/Urho3D/Graphics/Zone.cpp @@ -30,7 +30,7 @@ #include "../Graphics/TextureCube.h" #include "../Graphics/Zone.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/IO/Deserializer.cpp b/Source/Urho3D/IO/Deserializer.cpp index 4b0673fe3..306e85601 100644 --- a/Source/Urho3D/IO/Deserializer.cpp +++ b/Source/Urho3D/IO/Deserializer.cpp @@ -23,7 +23,7 @@ #include "Precompiled.h" #include "../IO/Deserializer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/IO/File.cpp b/Source/Urho3D/IO/File.cpp index 45a751590..49f5fd901 100644 --- a/Source/Urho3D/IO/File.cpp +++ b/Source/Urho3D/IO/File.cpp @@ -31,7 +31,7 @@ #include #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/IO/FileSystem.cpp b/Source/Urho3D/IO/FileSystem.cpp index c499735c0..7ac50d573 100644 --- a/Source/Urho3D/IO/FileSystem.cpp +++ b/Source/Urho3D/IO/FileSystem.cpp @@ -68,7 +68,7 @@ extern "C" const char* SDL_IOS_GetResourceDir(); extern "C" const char* SDL_IOS_GetDocumentsDir(); #endif -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/IO/Log.cpp b/Source/Urho3D/IO/Log.cpp index b8bfe62f3..cf84ba8b7 100644 --- a/Source/Urho3D/IO/Log.cpp +++ b/Source/Urho3D/IO/Log.cpp @@ -40,7 +40,7 @@ extern "C" void SDL_IOS_LogMessage(const char* message); #endif -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/IO/MemoryBuffer.cpp b/Source/Urho3D/IO/MemoryBuffer.cpp index 1ce13ec0b..05b031ddb 100644 --- a/Source/Urho3D/IO/MemoryBuffer.cpp +++ b/Source/Urho3D/IO/MemoryBuffer.cpp @@ -25,7 +25,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/IO/Serializer.cpp b/Source/Urho3D/IO/Serializer.cpp index e6f5f6c18..771ef6101 100644 --- a/Source/Urho3D/IO/Serializer.cpp +++ b/Source/Urho3D/IO/Serializer.cpp @@ -25,7 +25,7 @@ #include "../IO/Serializer.h" #include "../Core/Variant.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/IO/VectorBuffer.cpp b/Source/Urho3D/IO/VectorBuffer.cpp index 00703f519..3b9cb5830 100644 --- a/Source/Urho3D/IO/VectorBuffer.cpp +++ b/Source/Urho3D/IO/VectorBuffer.cpp @@ -25,7 +25,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Input/Input.cpp b/Source/Urho3D/Input/Input.cpp index 44f409f45..7a383fe0d 100644 --- a/Source/Urho3D/Input/Input.cpp +++ b/Source/Urho3D/Input/Input.cpp @@ -42,7 +42,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" extern "C" int SDL_AddTouch(SDL_TouchID touchID, const char *name); diff --git a/Source/Urho3D/LuaScript/LuaFile.cpp b/Source/Urho3D/LuaScript/LuaFile.cpp index 98249e70f..7276e408b 100644 --- a/Source/Urho3D/LuaScript/LuaFile.cpp +++ b/Source/Urho3D/LuaScript/LuaFile.cpp @@ -35,7 +35,7 @@ extern "C" #include } -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/LuaScript/LuaFunction.cpp b/Source/Urho3D/LuaScript/LuaFunction.cpp index 9f43f1982..42094738e 100644 --- a/Source/Urho3D/LuaScript/LuaFunction.cpp +++ b/Source/Urho3D/LuaScript/LuaFunction.cpp @@ -30,7 +30,7 @@ #include #include "../LuaScript/ToluaUtils.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/LuaScript/LuaScript.cpp b/Source/Urho3D/LuaScript/LuaScript.cpp index bc3269856..8e831d5da 100644 --- a/Source/Urho3D/LuaScript/LuaScript.cpp +++ b/Source/Urho3D/LuaScript/LuaScript.cpp @@ -42,7 +42,7 @@ extern "C" #include #include "../LuaScript/ToluaUtils.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" extern int tolua_AudioLuaAPI_open(lua_State*); extern int tolua_CoreLuaAPI_open(lua_State*); diff --git a/Source/Urho3D/LuaScript/LuaScriptInstance.cpp b/Source/Urho3D/LuaScript/LuaScriptInstance.cpp index f1a59ca46..b6c97fcec 100644 --- a/Source/Urho3D/LuaScript/LuaScriptInstance.cpp +++ b/Source/Urho3D/LuaScript/LuaScriptInstance.cpp @@ -42,7 +42,7 @@ #include #include "../LuaScript/ToluaUtils.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Math/Matrix3.cpp b/Source/Urho3D/Math/Matrix3.cpp index 7d8e2b08d..ac5393a88 100644 --- a/Source/Urho3D/Math/Matrix3.cpp +++ b/Source/Urho3D/Math/Matrix3.cpp @@ -25,7 +25,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Math/Matrix3x4.cpp b/Source/Urho3D/Math/Matrix3x4.cpp index a25033298..ad5b041cd 100644 --- a/Source/Urho3D/Math/Matrix3x4.cpp +++ b/Source/Urho3D/Math/Matrix3x4.cpp @@ -25,7 +25,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Math/Matrix4.cpp b/Source/Urho3D/Math/Matrix4.cpp index 49175e71d..119784faa 100644 --- a/Source/Urho3D/Math/Matrix4.cpp +++ b/Source/Urho3D/Math/Matrix4.cpp @@ -26,7 +26,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Math/StringHash.cpp b/Source/Urho3D/Math/StringHash.cpp index 939d5978f..4b3169e55 100644 --- a/Source/Urho3D/Math/StringHash.cpp +++ b/Source/Urho3D/Math/StringHash.cpp @@ -26,7 +26,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Math/Vector2.cpp b/Source/Urho3D/Math/Vector2.cpp index 86f472cef..f889f2bcb 100644 --- a/Source/Urho3D/Math/Vector2.cpp +++ b/Source/Urho3D/Math/Vector2.cpp @@ -25,7 +25,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Math/Vector3.cpp b/Source/Urho3D/Math/Vector3.cpp index 5f5d21e0e..9eee35c80 100644 --- a/Source/Urho3D/Math/Vector3.cpp +++ b/Source/Urho3D/Math/Vector3.cpp @@ -25,7 +25,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Math/Vector4.cpp b/Source/Urho3D/Math/Vector4.cpp index 07936e548..b60a8c367 100644 --- a/Source/Urho3D/Math/Vector4.cpp +++ b/Source/Urho3D/Math/Vector4.cpp @@ -25,7 +25,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Navigation/Navigable.cpp b/Source/Urho3D/Navigation/Navigable.cpp index b60e20587..70a616909 100644 --- a/Source/Urho3D/Navigation/Navigable.cpp +++ b/Source/Urho3D/Navigation/Navigable.cpp @@ -24,7 +24,7 @@ #include "../Core/Context.h" #include "../Navigation/Navigable.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Navigation/NavigationMesh.cpp b/Source/Urho3D/Navigation/NavigationMesh.cpp index 7d5a94edc..082aa9087 100644 --- a/Source/Urho3D/Navigation/NavigationMesh.cpp +++ b/Source/Urho3D/Navigation/NavigationMesh.cpp @@ -46,7 +46,7 @@ #include #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Navigation/OffMeshConnection.cpp b/Source/Urho3D/Navigation/OffMeshConnection.cpp index 3b21a2a10..c2fedc0a1 100644 --- a/Source/Urho3D/Navigation/OffMeshConnection.cpp +++ b/Source/Urho3D/Navigation/OffMeshConnection.cpp @@ -26,7 +26,7 @@ #include "../Navigation/OffMeshConnection.h" #include "../Scene/Scene.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Network/Connection.cpp b/Source/Urho3D/Network/Connection.cpp index 97b3ed095..fc212f2b0 100644 --- a/Source/Urho3D/Network/Connection.cpp +++ b/Source/Urho3D/Network/Connection.cpp @@ -40,7 +40,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Network/Controls.cpp b/Source/Urho3D/Network/Controls.cpp index 19609bb7b..e604a20e4 100644 --- a/Source/Urho3D/Network/Controls.cpp +++ b/Source/Urho3D/Network/Controls.cpp @@ -23,7 +23,7 @@ #include "Precompiled.h" #include "../Network/Controls.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Network/HttpRequest.cpp b/Source/Urho3D/Network/HttpRequest.cpp index 2a32d4696..e0e9c84b0 100644 --- a/Source/Urho3D/Network/HttpRequest.cpp +++ b/Source/Urho3D/Network/HttpRequest.cpp @@ -28,7 +28,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Network/Network.cpp b/Source/Urho3D/Network/Network.cpp index 006c960fc..8401590c4 100644 --- a/Source/Urho3D/Network/Network.cpp +++ b/Source/Urho3D/Network/Network.cpp @@ -39,7 +39,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Network/NetworkPriority.cpp b/Source/Urho3D/Network/NetworkPriority.cpp index ddc5070b6..0e0538380 100644 --- a/Source/Urho3D/Network/NetworkPriority.cpp +++ b/Source/Urho3D/Network/NetworkPriority.cpp @@ -24,7 +24,7 @@ #include "../Core/Context.h" #include "../Network/NetworkPriority.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Resource/BackgroundLoader.cpp b/Source/Urho3D/Resource/BackgroundLoader.cpp index 3b68486d2..3ae1629fa 100644 --- a/Source/Urho3D/Resource/BackgroundLoader.cpp +++ b/Source/Urho3D/Resource/BackgroundLoader.cpp @@ -29,7 +29,7 @@ #include "../Resource/ResourceEvents.h" #include "../Core/Timer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Resource/Image.cpp b/Source/Urho3D/Resource/Image.cpp index 4c8c78a6f..e850469e3 100644 --- a/Source/Urho3D/Resource/Image.cpp +++ b/Source/Urho3D/Resource/Image.cpp @@ -35,7 +35,7 @@ #include #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" extern "C" unsigned char *stbi_write_png_to_mem(unsigned char *pixels, int stride_bytes, int x, int y, int n, int *out_len); diff --git a/Source/Urho3D/Resource/JSONFile.cpp b/Source/Urho3D/Resource/JSONFile.cpp index 7eb7d9c1d..f0900db8e 100644 --- a/Source/Urho3D/Resource/JSONFile.cpp +++ b/Source/Urho3D/Resource/JSONFile.cpp @@ -33,7 +33,7 @@ #include #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" using namespace rapidjson; diff --git a/Source/Urho3D/Resource/JSONValue.cpp b/Source/Urho3D/Resource/JSONValue.cpp index 005938993..19a66e186 100644 --- a/Source/Urho3D/Resource/JSONValue.cpp +++ b/Source/Urho3D/Resource/JSONValue.cpp @@ -27,7 +27,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" using namespace rapidjson; diff --git a/Source/Urho3D/Resource/PListFile.cpp b/Source/Urho3D/Resource/PListFile.cpp index ed5ef7135..6f7557d62 100644 --- a/Source/Urho3D/Resource/PListFile.cpp +++ b/Source/Urho3D/Resource/PListFile.cpp @@ -28,7 +28,7 @@ #include "../Resource/XMLFile.h" #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Resource/ResourceCache.cpp b/Source/Urho3D/Resource/ResourceCache.cpp index bb7be87ee..ecddd4002 100644 --- a/Source/Urho3D/Resource/ResourceCache.cpp +++ b/Source/Urho3D/Resource/ResourceCache.cpp @@ -37,7 +37,7 @@ #include "../Core/WorkQueue.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Resource/XMLElement.cpp b/Source/Urho3D/Resource/XMLElement.cpp index 4a68ee060..1e716bd9a 100644 --- a/Source/Urho3D/Resource/XMLElement.cpp +++ b/Source/Urho3D/Resource/XMLElement.cpp @@ -27,7 +27,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Resource/XMLFile.cpp b/Source/Urho3D/Resource/XMLFile.cpp index 4a21ecf12..12fb1a19b 100644 --- a/Source/Urho3D/Resource/XMLFile.cpp +++ b/Source/Urho3D/Resource/XMLFile.cpp @@ -34,7 +34,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Scene/Animatable.cpp b/Source/Urho3D/Scene/Animatable.cpp index bbc6b9a9d..f56f86571 100644 --- a/Source/Urho3D/Scene/Animatable.cpp +++ b/Source/Urho3D/Scene/Animatable.cpp @@ -30,7 +30,7 @@ #include "../Scene/ValueAnimation.h" #include "../Resource/XMLElement.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Scene/Component.cpp b/Source/Urho3D/Scene/Component.cpp index 2b0369e86..3ec85ce6e 100644 --- a/Source/Urho3D/Scene/Component.cpp +++ b/Source/Urho3D/Scene/Component.cpp @@ -27,7 +27,7 @@ #include "../Scene/Scene.h" #include "../Scene/SceneEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Scene/Node.cpp b/Source/Urho3D/Scene/Node.cpp index 7642dbcfd..7ca39ef56 100644 --- a/Source/Urho3D/Scene/Node.cpp +++ b/Source/Urho3D/Scene/Node.cpp @@ -34,7 +34,7 @@ #include "../Scene/UnknownComponent.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Scene/ObjectAnimation.cpp b/Source/Urho3D/Scene/ObjectAnimation.cpp index e4bee7feb..621216b62 100644 --- a/Source/Urho3D/Scene/ObjectAnimation.cpp +++ b/Source/Urho3D/Scene/ObjectAnimation.cpp @@ -28,7 +28,7 @@ #include "../Scene/ValueAnimationInfo.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Scene/Scene.cpp b/Source/Urho3D/Scene/Scene.cpp index 0b3cd4ddb..0cf953947 100644 --- a/Source/Urho3D/Scene/Scene.cpp +++ b/Source/Urho3D/Scene/Scene.cpp @@ -41,7 +41,7 @@ #include "../Core/WorkQueue.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Scene/SceneResolver.cpp b/Source/Urho3D/Scene/SceneResolver.cpp index b85d10fa6..1decc3524 100644 --- a/Source/Urho3D/Scene/SceneResolver.cpp +++ b/Source/Urho3D/Scene/SceneResolver.cpp @@ -27,7 +27,7 @@ #include "../IO/Log.h" #include "../Scene/Node.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Scene/Serializable.cpp b/Source/Urho3D/Scene/Serializable.cpp index 0e690c1ad..94ce9e622 100644 --- a/Source/Urho3D/Scene/Serializable.cpp +++ b/Source/Urho3D/Scene/Serializable.cpp @@ -30,7 +30,7 @@ #include "../IO/Serializer.h" #include "../Resource/XMLElement.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Scene/SmoothedTransform.cpp b/Source/Urho3D/Scene/SmoothedTransform.cpp index 45c23d00f..100c0e029 100644 --- a/Source/Urho3D/Scene/SmoothedTransform.cpp +++ b/Source/Urho3D/Scene/SmoothedTransform.cpp @@ -26,7 +26,7 @@ #include "../Scene/SceneEvents.h" #include "../Scene/SmoothedTransform.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Scene/UnknownComponent.cpp b/Source/Urho3D/Scene/UnknownComponent.cpp index c072df483..85e908f1b 100644 --- a/Source/Urho3D/Scene/UnknownComponent.cpp +++ b/Source/Urho3D/Scene/UnknownComponent.cpp @@ -28,7 +28,7 @@ #include "../Scene/UnknownComponent.h" #include "../Resource/XMLElement.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Scene/ValueAnimation.cpp b/Source/Urho3D/Scene/ValueAnimation.cpp index 0dbb7d620..2f70f017c 100644 --- a/Source/Urho3D/Scene/ValueAnimation.cpp +++ b/Source/Urho3D/Scene/ValueAnimation.cpp @@ -30,7 +30,7 @@ #include "../Scene/ValueAnimation.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Scene/ValueAnimationInfo.cpp b/Source/Urho3D/Scene/ValueAnimationInfo.cpp index b1b9f716d..ed7594967 100644 --- a/Source/Urho3D/Scene/ValueAnimationInfo.cpp +++ b/Source/Urho3D/Scene/ValueAnimationInfo.cpp @@ -25,7 +25,7 @@ #include "../Scene/ValueAnimationInfo.h" #include "../IO/Log.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Script/Script.cpp b/Source/Urho3D/Script/Script.cpp index 8e4ba6716..720387484 100644 --- a/Source/Urho3D/Script/Script.cpp +++ b/Source/Urho3D/Script/Script.cpp @@ -33,7 +33,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Script/ScriptAPIDump.cpp b/Source/Urho3D/Script/ScriptAPIDump.cpp index 125bfb6f7..e46e951e0 100644 --- a/Source/Urho3D/Script/ScriptAPIDump.cpp +++ b/Source/Urho3D/Script/ScriptAPIDump.cpp @@ -29,7 +29,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Script/ScriptFile.cpp b/Source/Urho3D/Script/ScriptFile.cpp index 362775e7b..22d6f0851 100644 --- a/Source/Urho3D/Script/ScriptFile.cpp +++ b/Source/Urho3D/Script/ScriptFile.cpp @@ -35,7 +35,7 @@ #include #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Script/ScriptInstance.cpp b/Source/Urho3D/Script/ScriptInstance.cpp index 19adba991..2e4472b42 100644 --- a/Source/Urho3D/Script/ScriptInstance.cpp +++ b/Source/Urho3D/Script/ScriptInstance.cpp @@ -39,7 +39,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Script/UIAPI.cpp b/Source/Urho3D/Script/UIAPI.cpp index a69351044..2c8750c2d 100644 --- a/Source/Urho3D/Script/UIAPI.cpp +++ b/Source/Urho3D/Script/UIAPI.cpp @@ -41,7 +41,7 @@ #include "../UI/View3D.h" #include "../UI/Window.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/BorderImage.cpp b/Source/Urho3D/UI/BorderImage.cpp index 2c9710f06..546adae4a 100644 --- a/Source/Urho3D/UI/BorderImage.cpp +++ b/Source/Urho3D/UI/BorderImage.cpp @@ -26,7 +26,7 @@ #include "../Resource/ResourceCache.h" #include "../Graphics/Texture2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/Button.cpp b/Source/Urho3D/UI/Button.cpp index 41fcbcc3f..ac78bf773 100644 --- a/Source/Urho3D/UI/Button.cpp +++ b/Source/Urho3D/UI/Button.cpp @@ -27,7 +27,7 @@ #include "../UI/UI.h" #include "../UI/UIEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/CheckBox.cpp b/Source/Urho3D/UI/CheckBox.cpp index e5bc6aa56..e82bd5d30 100644 --- a/Source/Urho3D/UI/CheckBox.cpp +++ b/Source/Urho3D/UI/CheckBox.cpp @@ -26,7 +26,7 @@ #include "../Input/InputEvents.h" #include "../UI/UIEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/Cursor.cpp b/Source/Urho3D/UI/Cursor.cpp index c2594bdcb..cc1a799f6 100644 --- a/Source/Urho3D/UI/Cursor.cpp +++ b/Source/Urho3D/UI/Cursor.cpp @@ -31,7 +31,7 @@ #include "../Graphics/Texture2D.h" #include "../UI/UI.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/DropDownList.cpp b/Source/Urho3D/UI/DropDownList.cpp index 3a586d43f..2798570eb 100644 --- a/Source/Urho3D/UI/DropDownList.cpp +++ b/Source/Urho3D/UI/DropDownList.cpp @@ -31,7 +31,7 @@ #include "../UI/UIEvents.h" #include "../UI/Window.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/FileSelector.cpp b/Source/Urho3D/UI/FileSelector.cpp index 03a09230f..14af889dd 100644 --- a/Source/Urho3D/UI/FileSelector.cpp +++ b/Source/Urho3D/UI/FileSelector.cpp @@ -36,7 +36,7 @@ #include "../Container/Sort.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/Font.cpp b/Source/Urho3D/UI/Font.cpp index 0864549da..da34626e7 100644 --- a/Source/Urho3D/UI/Font.cpp +++ b/Source/Urho3D/UI/Font.cpp @@ -33,7 +33,7 @@ #include "../Resource/XMLElement.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/FontFace.cpp b/Source/Urho3D/UI/FontFace.cpp index 0f2428194..7e025cd29 100644 --- a/Source/Urho3D/UI/FontFace.cpp +++ b/Source/Urho3D/UI/FontFace.cpp @@ -28,7 +28,7 @@ #include "../IO/Log.h" #include "../Graphics/Texture2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/FontFaceBitmap.cpp b/Source/Urho3D/UI/FontFaceBitmap.cpp index b81675180..6ce0838a4 100644 --- a/Source/Urho3D/UI/FontFaceBitmap.cpp +++ b/Source/Urho3D/UI/FontFaceBitmap.cpp @@ -35,7 +35,7 @@ #include "../UI/UI.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/FontFaceFreeType.cpp b/Source/Urho3D/UI/FontFaceFreeType.cpp index 1b4de6721..72750fcd3 100644 --- a/Source/Urho3D/UI/FontFaceFreeType.cpp +++ b/Source/Urho3D/UI/FontFaceFreeType.cpp @@ -36,7 +36,7 @@ #include FT_FREETYPE_H #include FT_TRUETYPE_TABLES_H -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/LineEdit.cpp b/Source/Urho3D/UI/LineEdit.cpp index d7fdbc5e3..acf2300fa 100644 --- a/Source/Urho3D/UI/LineEdit.cpp +++ b/Source/Urho3D/UI/LineEdit.cpp @@ -28,7 +28,7 @@ #include "../UI/UI.h" #include "../UI/UIEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/ListView.cpp b/Source/Urho3D/UI/ListView.cpp index 638e0fa10..6acaeaa28 100644 --- a/Source/Urho3D/UI/ListView.cpp +++ b/Source/Urho3D/UI/ListView.cpp @@ -31,7 +31,7 @@ #include "../UI/UI.h" #include "../UI/UIEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/Menu.cpp b/Source/Urho3D/UI/Menu.cpp index 1e86df032..837035fb7 100644 --- a/Source/Urho3D/UI/Menu.cpp +++ b/Source/Urho3D/UI/Menu.cpp @@ -29,7 +29,7 @@ #include "../UI/UIEvents.h" #include "../UI/Window.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/ScrollView.cpp b/Source/Urho3D/UI/ScrollView.cpp index 3159ea5ae..a1bd8bf59 100644 --- a/Source/Urho3D/UI/ScrollView.cpp +++ b/Source/Urho3D/UI/ScrollView.cpp @@ -30,7 +30,7 @@ #include "../UI/UI.h" #include "../UI/UIEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/Slider.cpp b/Source/Urho3D/UI/Slider.cpp index 544a17264..dae883752 100644 --- a/Source/Urho3D/UI/Slider.cpp +++ b/Source/Urho3D/UI/Slider.cpp @@ -27,7 +27,7 @@ #include "../UI/Slider.h" #include "../UI/UIEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/Sprite.cpp b/Source/Urho3D/UI/Sprite.cpp index a7eaae3ae..e0d025be9 100644 --- a/Source/Urho3D/UI/Sprite.cpp +++ b/Source/Urho3D/UI/Sprite.cpp @@ -26,7 +26,7 @@ #include "../UI/Sprite.h" #include "../Graphics/Texture2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/Text.cpp b/Source/Urho3D/UI/Text.cpp index 9573ffea0..f61261b55 100644 --- a/Source/Urho3D/UI/Text.cpp +++ b/Source/Urho3D/UI/Text.cpp @@ -30,7 +30,7 @@ #include "../UI/Text.h" #include "../Graphics/Texture2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/UI.cpp b/Source/Urho3D/UI/UI.cpp index 9fdb54fdc..1548f5d75 100644 --- a/Source/Urho3D/UI/UI.cpp +++ b/Source/Urho3D/UI/UI.cpp @@ -57,7 +57,7 @@ #include -#include "../Container/DebugNew.h" +#include "../DebugNew.h" #define TOUCHID_MASK(id) (1 << id) diff --git a/Source/Urho3D/UI/UIBatch.cpp b/Source/Urho3D/UI/UIBatch.cpp index 6131c36b6..da8723bb0 100644 --- a/Source/Urho3D/UI/UIBatch.cpp +++ b/Source/Urho3D/UI/UIBatch.cpp @@ -27,7 +27,7 @@ #include "../Graphics/Texture.h" #include "../UI/UIElement.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/UIElement.cpp b/Source/Urho3D/UI/UIElement.cpp index ad13894dd..48e59d638 100644 --- a/Source/Urho3D/UI/UIElement.cpp +++ b/Source/Urho3D/UI/UIElement.cpp @@ -33,7 +33,7 @@ #include "../UI/UIElement.h" #include "../UI/UIEvents.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/UI/Window.cpp b/Source/Urho3D/UI/Window.cpp index ae7259f8e..e597faeea 100644 --- a/Source/Urho3D/UI/Window.cpp +++ b/Source/Urho3D/UI/Window.cpp @@ -28,7 +28,7 @@ #include "../UI/UIEvents.h" #include "../UI/Window.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/AnimatedSprite2D.cpp b/Source/Urho3D/Urho2D/AnimatedSprite2D.cpp index 5df002375..810a5e726 100644 --- a/Source/Urho3D/Urho2D/AnimatedSprite2D.cpp +++ b/Source/Urho3D/Urho2D/AnimatedSprite2D.cpp @@ -31,7 +31,7 @@ #include "../Urho2D/Sprite2D.h" #include "../Urho2D/StaticSprite2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/Animation2D.cpp b/Source/Urho3D/Urho2D/Animation2D.cpp index db08bc075..eb684322d 100644 --- a/Source/Urho3D/Urho2D/Animation2D.cpp +++ b/Source/Urho3D/Urho2D/Animation2D.cpp @@ -26,7 +26,7 @@ #include "../IO/Log.h" #include "../Urho2D/Sprite2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/AnimationSet2D.cpp b/Source/Urho3D/Urho2D/AnimationSet2D.cpp index 2d304599e..4e3990b41 100644 --- a/Source/Urho3D/Urho2D/AnimationSet2D.cpp +++ b/Source/Urho3D/Urho2D/AnimationSet2D.cpp @@ -31,7 +31,7 @@ #include "../Urho2D/SpriteSheet2D.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/CollisionBox2D.cpp b/Source/Urho3D/Urho2D/CollisionBox2D.cpp index 3cb6d7e86..ea64d1ce1 100644 --- a/Source/Urho3D/Urho2D/CollisionBox2D.cpp +++ b/Source/Urho3D/Urho2D/CollisionBox2D.cpp @@ -25,7 +25,7 @@ #include "../Urho2D/CollisionBox2D.h" #include "../Urho2D/PhysicsUtils2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/CollisionChain2D.cpp b/Source/Urho3D/Urho2D/CollisionChain2D.cpp index 104c89d71..c6550abfe 100644 --- a/Source/Urho3D/Urho2D/CollisionChain2D.cpp +++ b/Source/Urho3D/Urho2D/CollisionChain2D.cpp @@ -27,7 +27,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../IO/VectorBuffer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/CollisionCircle2D.cpp b/Source/Urho3D/Urho2D/CollisionCircle2D.cpp index a67e43104..f1c6a3f2a 100644 --- a/Source/Urho3D/Urho2D/CollisionCircle2D.cpp +++ b/Source/Urho3D/Urho2D/CollisionCircle2D.cpp @@ -25,7 +25,7 @@ #include "../Urho2D/CollisionCircle2D.h" #include "../Urho2D/PhysicsUtils2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/CollisionEdge2D.cpp b/Source/Urho3D/Urho2D/CollisionEdge2D.cpp index 55ad82534..5e14170ca 100644 --- a/Source/Urho3D/Urho2D/CollisionEdge2D.cpp +++ b/Source/Urho3D/Urho2D/CollisionEdge2D.cpp @@ -25,7 +25,7 @@ #include "../Urho2D/CollisionEdge2D.h" #include "../Urho2D/PhysicsUtils2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/CollisionPolygon2D.cpp b/Source/Urho3D/Urho2D/CollisionPolygon2D.cpp index 8295df3fb..6c5566916 100644 --- a/Source/Urho3D/Urho2D/CollisionPolygon2D.cpp +++ b/Source/Urho3D/Urho2D/CollisionPolygon2D.cpp @@ -27,7 +27,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../IO/VectorBuffer.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/CollisionShape2D.cpp b/Source/Urho3D/Urho2D/CollisionShape2D.cpp index b8a0c83fc..1e7de87ed 100644 --- a/Source/Urho3D/Urho2D/CollisionShape2D.cpp +++ b/Source/Urho3D/Urho2D/CollisionShape2D.cpp @@ -29,7 +29,7 @@ #include "../Urho2D/RigidBody2D.h" #include "../Scene/Scene.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/Constraint2D.cpp b/Source/Urho3D/Urho2D/Constraint2D.cpp index 6b96f2297..8913bbb15 100644 --- a/Source/Urho3D/Urho2D/Constraint2D.cpp +++ b/Source/Urho3D/Urho2D/Constraint2D.cpp @@ -30,7 +30,7 @@ #include "../Urho2D/PhysicsWorld2D.h" #include "../Scene/Scene.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ConstraintDistance2D.cpp b/Source/Urho3D/Urho2D/ConstraintDistance2D.cpp index ea9be0897..cd3dc5ec4 100644 --- a/Source/Urho3D/Urho2D/ConstraintDistance2D.cpp +++ b/Source/Urho3D/Urho2D/ConstraintDistance2D.cpp @@ -26,7 +26,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../Urho2D/RigidBody2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ConstraintFriction2D.cpp b/Source/Urho3D/Urho2D/ConstraintFriction2D.cpp index b752adce6..696606420 100644 --- a/Source/Urho3D/Urho2D/ConstraintFriction2D.cpp +++ b/Source/Urho3D/Urho2D/ConstraintFriction2D.cpp @@ -26,7 +26,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../Urho2D/RigidBody2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ConstraintGear2D.cpp b/Source/Urho3D/Urho2D/ConstraintGear2D.cpp index fdfcb9f93..efb2b7966 100644 --- a/Source/Urho3D/Urho2D/ConstraintGear2D.cpp +++ b/Source/Urho3D/Urho2D/ConstraintGear2D.cpp @@ -26,7 +26,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../Urho2D/RigidBody2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ConstraintMotor2D.cpp b/Source/Urho3D/Urho2D/ConstraintMotor2D.cpp index 0d15f0cb8..4b154f87a 100644 --- a/Source/Urho3D/Urho2D/ConstraintMotor2D.cpp +++ b/Source/Urho3D/Urho2D/ConstraintMotor2D.cpp @@ -26,7 +26,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../Urho2D/RigidBody2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ConstraintMouse2D.cpp b/Source/Urho3D/Urho2D/ConstraintMouse2D.cpp index f56d103a0..a573d3be1 100644 --- a/Source/Urho3D/Urho2D/ConstraintMouse2D.cpp +++ b/Source/Urho3D/Urho2D/ConstraintMouse2D.cpp @@ -26,7 +26,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../Urho2D/RigidBody2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ConstraintPrismatic2D.cpp b/Source/Urho3D/Urho2D/ConstraintPrismatic2D.cpp index d3cb9df91..d78d85dcb 100644 --- a/Source/Urho3D/Urho2D/ConstraintPrismatic2D.cpp +++ b/Source/Urho3D/Urho2D/ConstraintPrismatic2D.cpp @@ -26,7 +26,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../Urho2D/RigidBody2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ConstraintPulley2D.cpp b/Source/Urho3D/Urho2D/ConstraintPulley2D.cpp index ba9811b92..f12c26eff 100644 --- a/Source/Urho3D/Urho2D/ConstraintPulley2D.cpp +++ b/Source/Urho3D/Urho2D/ConstraintPulley2D.cpp @@ -26,7 +26,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../Urho2D/RigidBody2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ConstraintRevolute2D.cpp b/Source/Urho3D/Urho2D/ConstraintRevolute2D.cpp index c732ea7bf..4b7fe33f1 100644 --- a/Source/Urho3D/Urho2D/ConstraintRevolute2D.cpp +++ b/Source/Urho3D/Urho2D/ConstraintRevolute2D.cpp @@ -26,7 +26,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../Urho2D/RigidBody2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ConstraintRope2D.cpp b/Source/Urho3D/Urho2D/ConstraintRope2D.cpp index cc406002b..264351881 100644 --- a/Source/Urho3D/Urho2D/ConstraintRope2D.cpp +++ b/Source/Urho3D/Urho2D/ConstraintRope2D.cpp @@ -26,7 +26,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../Urho2D/RigidBody2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ConstraintWeld2D.cpp b/Source/Urho3D/Urho2D/ConstraintWeld2D.cpp index e77abc3d0..50cae9a6b 100644 --- a/Source/Urho3D/Urho2D/ConstraintWeld2D.cpp +++ b/Source/Urho3D/Urho2D/ConstraintWeld2D.cpp @@ -26,7 +26,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../Urho2D/RigidBody2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ConstraintWheel2D.cpp b/Source/Urho3D/Urho2D/ConstraintWheel2D.cpp index 90b18586d..69e1e8fa1 100644 --- a/Source/Urho3D/Urho2D/ConstraintWheel2D.cpp +++ b/Source/Urho3D/Urho2D/ConstraintWheel2D.cpp @@ -26,7 +26,7 @@ #include "../Urho2D/PhysicsUtils2D.h" #include "../Urho2D/RigidBody2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/Drawable2D.cpp b/Source/Urho3D/Urho2D/Drawable2D.cpp index d4267dfb3..a6a6cbaee 100644 --- a/Source/Urho3D/Urho2D/Drawable2D.cpp +++ b/Source/Urho3D/Urho2D/Drawable2D.cpp @@ -29,7 +29,7 @@ #include "../Scene/Scene.h" #include "../Graphics/Texture2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ParticleEffect2D.cpp b/Source/Urho3D/Urho2D/ParticleEffect2D.cpp index 388191a33..3c3d6737e 100644 --- a/Source/Urho3D/Urho2D/ParticleEffect2D.cpp +++ b/Source/Urho3D/Urho2D/ParticleEffect2D.cpp @@ -30,7 +30,7 @@ #include "../Urho2D/Sprite2D.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/ParticleEmitter2D.cpp b/Source/Urho3D/Urho2D/ParticleEmitter2D.cpp index bfe457eef..aa1199152 100644 --- a/Source/Urho3D/Urho2D/ParticleEmitter2D.cpp +++ b/Source/Urho3D/Urho2D/ParticleEmitter2D.cpp @@ -30,7 +30,7 @@ #include "../Scene/SceneEvents.h" #include "../Urho2D/Sprite2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/PhysicsWorld2D.cpp b/Source/Urho3D/Urho2D/PhysicsWorld2D.cpp index 6217437fb..52e440b2c 100644 --- a/Source/Urho3D/Urho2D/PhysicsWorld2D.cpp +++ b/Source/Urho3D/Urho2D/PhysicsWorld2D.cpp @@ -35,7 +35,7 @@ #include "../Scene/SceneEvents.h" #include "../Graphics/Viewport.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/Renderer2D.cpp b/Source/Urho3D/Urho2D/Renderer2D.cpp index 3975ad19f..bd80e944f 100644 --- a/Source/Urho3D/Urho2D/Renderer2D.cpp +++ b/Source/Urho3D/Urho2D/Renderer2D.cpp @@ -39,7 +39,7 @@ #include "../Graphics/VertexBuffer.h" #include "../Core/WorkQueue.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/RigidBody2D.cpp b/Source/Urho3D/Urho2D/RigidBody2D.cpp index de4ccbcb9..6515871c1 100644 --- a/Source/Urho3D/Urho2D/RigidBody2D.cpp +++ b/Source/Urho3D/Urho2D/RigidBody2D.cpp @@ -30,7 +30,7 @@ #include "../Urho2D/RigidBody2D.h" #include "../Scene/Scene.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/Sprite2D.cpp b/Source/Urho3D/Urho2D/Sprite2D.cpp index c1cc035b3..463714095 100644 --- a/Source/Urho3D/Urho2D/Sprite2D.cpp +++ b/Source/Urho3D/Urho2D/Sprite2D.cpp @@ -28,7 +28,7 @@ #include "../Urho2D/SpriteSheet2D.h" #include "../Graphics/Texture2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/SpriteSheet2D.cpp b/Source/Urho3D/Urho2D/SpriteSheet2D.cpp index 8ceb0f29b..6d040a7e5 100644 --- a/Source/Urho3D/Urho2D/SpriteSheet2D.cpp +++ b/Source/Urho3D/Urho2D/SpriteSheet2D.cpp @@ -33,7 +33,7 @@ #include "../Graphics/Texture2D.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/StaticSprite2D.cpp b/Source/Urho3D/Urho2D/StaticSprite2D.cpp index 09b56d22c..82a68fbee 100644 --- a/Source/Urho3D/Urho2D/StaticSprite2D.cpp +++ b/Source/Urho3D/Urho2D/StaticSprite2D.cpp @@ -27,7 +27,7 @@ #include "../Urho2D/StaticSprite2D.h" #include "../Graphics/Texture2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/TileMap2D.cpp b/Source/Urho3D/Urho2D/TileMap2D.cpp index 1f348d498..e13771cce 100644 --- a/Source/Urho3D/Urho2D/TileMap2D.cpp +++ b/Source/Urho3D/Urho2D/TileMap2D.cpp @@ -30,7 +30,7 @@ #include "../Urho2D/TileMapLayer2D.h" #include "../Urho2D/TmxFile2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/TileMapDefs2D.cpp b/Source/Urho3D/Urho2D/TileMapDefs2D.cpp index 87fe3979c..47d195020 100644 --- a/Source/Urho3D/Urho2D/TileMapDefs2D.cpp +++ b/Source/Urho3D/Urho2D/TileMapDefs2D.cpp @@ -24,7 +24,7 @@ #include "../Urho2D/TileMapDefs2D.h" #include "../Resource/XMLElement.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/TileMapLayer2D.cpp b/Source/Urho3D/Urho2D/TileMapLayer2D.cpp index 5b60a6144..35e4564fa 100644 --- a/Source/Urho3D/Urho2D/TileMapLayer2D.cpp +++ b/Source/Urho3D/Urho2D/TileMapLayer2D.cpp @@ -30,7 +30,7 @@ #include "../Urho2D/TileMapLayer2D.h" #include "../Urho2D/TmxFile2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/TmxFile2D.cpp b/Source/Urho3D/Urho2D/TmxFile2D.cpp index 860a734a3..35d66d95d 100644 --- a/Source/Urho3D/Urho2D/TmxFile2D.cpp +++ b/Source/Urho3D/Urho2D/TmxFile2D.cpp @@ -30,7 +30,7 @@ #include "../Urho2D/TmxFile2D.h" #include "../Resource/XMLFile.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D { diff --git a/Source/Urho3D/Urho2D/Urho2D.cpp b/Source/Urho3D/Urho2D/Urho2D.cpp index 3d8420483..d11ed9fc3 100644 --- a/Source/Urho3D/Urho2D/Urho2D.cpp +++ b/Source/Urho3D/Urho2D/Urho2D.cpp @@ -55,7 +55,7 @@ #include "../Urho2D/TileMapLayer2D.h" #include "../Urho2D/TmxFile2D.h" -#include "../Container/DebugNew.h" +#include "../DebugNew.h" namespace Urho3D {