From 7548f870460723844985ca5a983bc27609528cce Mon Sep 17 00:00:00 2001 From: Jonathan Thomas Date: Fri, 23 May 2025 22:28:03 -0500 Subject: [PATCH] Fixing some effect includes in effects.h, since I forgot to add them with Sharpen and Spherical Projection. --- src/EffectInfo.cpp | 2 -- src/Effects.h | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EffectInfo.cpp b/src/EffectInfo.cpp index 5a271df8..e7eaa7d8 100644 --- a/src/EffectInfo.cpp +++ b/src/EffectInfo.cpp @@ -12,8 +12,6 @@ #include "EffectInfo.h" #include "Effects.h" -#include "effects/Sharpen.h" -#include "effects/SphericalProjection.h" using namespace openshot; diff --git a/src/Effects.h b/src/Effects.h index bfc3fcf0..cf9cc014 100644 --- a/src/Effects.h +++ b/src/Effects.h @@ -27,6 +27,8 @@ #include "effects/Negate.h" #include "effects/Pixelate.h" #include "effects/Saturation.h" +#include "effects/Sharpen.h" +#include "effects/SphericalProjection.h" #include "effects/Shift.h" #include "effects/Wave.h"