From 95aec70d01974cef477d09fa3f02288d4f5e2690 Mon Sep 17 00:00:00 2001 From: w1z7ard Date: Sun, 8 Jul 2007 22:31:46 +0000 Subject: [PATCH] changed Custom[Wave | Shape].h -> hpp git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/personal/carm/dev-1.0@252 6778bc44-b910-0410-a7a0-be141de4315d --- src/projectM-engine/CMakeLists.txt | 2 +- src/projectM-engine/CustomShape.cpp | 2 +- src/projectM-engine/{CustomShape.h => CustomShape.hpp} | 0 src/projectM-engine/CustomWave.cpp | 2 +- src/projectM-engine/{CustomWave.h => CustomWave.hpp} | 0 src/projectM-engine/Param.cpp | 2 +- src/projectM-engine/Parser.cpp | 4 ++-- src/projectM-engine/PerPointEqn.cpp | 2 +- src/projectM-engine/Preset.hpp | 4 ++-- src/projectM-engine/Renderer.cpp | 4 ++-- src/projectM-engine/projectM.cpp | 4 ++-- 11 files changed, 13 insertions(+), 13 deletions(-) rename src/projectM-engine/{CustomShape.h => CustomShape.hpp} (100%) rename src/projectM-engine/{CustomWave.h => CustomWave.hpp} (100%) diff --git a/src/projectM-engine/CMakeLists.txt b/src/projectM-engine/CMakeLists.txt index 4eeab3a8e..b3c529a16 100644 --- a/src/projectM-engine/CMakeLists.txt +++ b/src/projectM-engine/CMakeLists.txt @@ -1,7 +1,7 @@ PROJECT(projectM) ADD_LIBRARY(projectM SHARED projectM.cpp projectM.h pbuffer.cpp pbuffer.h InitCond.cpp InitCond.hpp Expr.cpp PCM.cpp Parser.cpp Preset.cpp common.h BeatDetect.cpp PCM.h PerPixelEqn.cpp Eval.h -Param.cpp CustomWave.cpp CustomShape.h CustomShape.cpp Param.h CustomWave.h BeatDetect.h menu.cpp console_interface.h +Param.cpp CustomWave.cpp CustomShape.hpp CustomShape.cpp Param.h CustomWave.hpp BeatDetect.h menu.cpp console_interface.h Func.h Func.cpp Eval.cpp wipemalloc.h browser.cpp PerFrameEqn.cpp PerPointEqn.cpp editor.cpp fftsg.cpp glConsole.cpp console_interface.cpp CValue.h Expr.h timer.cpp wipemalloc.cpp PerFrameEqn.h PerPixelEqn.h PerPointEqn.h browser.h BuiltinFuncs.hpp BuiltinFuncs.cpp compare.h editor.h event.h fatal.h SplayTree.hpp fftsg.h glConsole.h menu.h timer.h SplayNode.hpp BuiltinParams.hpp BuiltinParams.cpp Preset.hpp Renderer.cpp Renderer.hpp ParamUtils.hpp PresetLoader.cpp PresetLoader.hpp PresetChooser.hpp PresetChooser.cpp) diff --git a/src/projectM-engine/CustomShape.cpp b/src/projectM-engine/CustomShape.cpp index 20fc1c9f9..6fcf37591 100755 --- a/src/projectM-engine/CustomShape.cpp +++ b/src/projectM-engine/CustomShape.cpp @@ -26,7 +26,7 @@ #include "common.h" #include "fatal.h" -#include "CustomShape.h" +#include "CustomShape.hpp" #include "Eval.h" #include "Expr.h" #include "InitCond.hpp" diff --git a/src/projectM-engine/CustomShape.h b/src/projectM-engine/CustomShape.hpp similarity index 100% rename from src/projectM-engine/CustomShape.h rename to src/projectM-engine/CustomShape.hpp diff --git a/src/projectM-engine/CustomWave.cpp b/src/projectM-engine/CustomWave.cpp index 6f63a7e6d..fd67acf9e 100755 --- a/src/projectM-engine/CustomWave.cpp +++ b/src/projectM-engine/CustomWave.cpp @@ -28,7 +28,7 @@ #include "common.h" #include "fatal.h" -#include "CustomWave.h" +#include "CustomWave.hpp" #include "Eval.h" #include "Expr.h" #include "InitCond.hpp" diff --git a/src/projectM-engine/CustomWave.h b/src/projectM-engine/CustomWave.hpp similarity index 100% rename from src/projectM-engine/CustomWave.h rename to src/projectM-engine/CustomWave.hpp diff --git a/src/projectM-engine/Param.cpp b/src/projectM-engine/Param.cpp index 4e0f2aea2..03b31de67 100755 --- a/src/projectM-engine/Param.cpp +++ b/src/projectM-engine/Param.cpp @@ -30,7 +30,7 @@ #include "fatal.h" #include "common.h" -#include "CustomShape.h" +#include "CustomShape.hpp" #include "Eval.h" #include "Expr.h" #include "InitCond.hpp" diff --git a/src/projectM-engine/Parser.cpp b/src/projectM-engine/Parser.cpp index 6b316a0e5..0f6b527da 100755 --- a/src/projectM-engine/Parser.cpp +++ b/src/projectM-engine/Parser.cpp @@ -28,8 +28,8 @@ #include "fatal.h" #include "BuiltinFuncs.hpp" -#include "CustomWave.h" -#include "CustomShape.h" +#include "CustomWave.hpp" +#include "CustomShape.hpp" #include "Expr.h" #include "Eval.h" #include "Func.h" diff --git a/src/projectM-engine/PerPointEqn.cpp b/src/projectM-engine/PerPointEqn.cpp index c4ba915d8..8b134a4fb 100755 --- a/src/projectM-engine/PerPointEqn.cpp +++ b/src/projectM-engine/PerPointEqn.cpp @@ -28,7 +28,7 @@ #include "fatal.h" #include "common.h" -#include "CustomWave.h" +#include "CustomWave.hpp" #include "Eval.h" #include "Expr.h" #include "Param.h" diff --git a/src/projectM-engine/Preset.hpp b/src/projectM-engine/Preset.hpp index cbe42e444..330508e30 100644 --- a/src/projectM-engine/Preset.hpp +++ b/src/projectM-engine/Preset.hpp @@ -33,8 +33,8 @@ #include //#define PRESET_DEBUG 2 /* 0 for no debugging, 1 for normal, 2 for insane */ -#include "CustomShape.h" -#include "CustomWave.h" +#include "CustomShape.hpp" +#include "CustomWave.hpp" #include "Expr.h" #include "PerPixelEqn.h" #include "PerFrameEqn.h" diff --git a/src/projectM-engine/Renderer.cpp b/src/projectM-engine/Renderer.cpp index 91a2e73e6..c556bfaab 100644 --- a/src/projectM-engine/Renderer.cpp +++ b/src/projectM-engine/Renderer.cpp @@ -3,8 +3,8 @@ #include "math.h" #include "common.h" #include "console_interface.h" -#include "CustomShape.h" -#include "CustomWave.h" +#include "CustomShape.hpp" +#include "CustomWave.hpp" class Preset; diff --git a/src/projectM-engine/projectM.cpp b/src/projectM-engine/projectM.cpp index 0f23ac2f0..5300d54d1 100755 --- a/src/projectM-engine/projectM.cpp +++ b/src/projectM-engine/projectM.cpp @@ -43,8 +43,8 @@ #include "PerPixelEqn.h" //#include "menu.h" #include "PCM.h" //Sound data handler (buffering, FFT, etc.) -#include "CustomWave.h" -#include "CustomShape.h" +#include "CustomWave.hpp" +#include "CustomShape.hpp" #include "SplayTree.hpp" #include "Renderer.hpp" #include "PresetChooser.hpp"