From 33b5a8f082f30e9483e01a491e21fa17809a1c07 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Thu, 22 Oct 2009 19:46:16 +0000 Subject: [PATCH] mark the private headers as such svn path=/trunk/KDE/kdelibs/; revision=1039133 --- animations/expand.cpp | 2 +- animations/{expand.h => expand_p.h} | 0 animations/fade.cpp | 2 +- animations/{fade.h => fade_p.h} | 0 animations/grow.cpp | 2 +- animations/{grow.h => grow_p.h} | 0 animations/pause.cpp | 2 +- animations/{pause.h => pause_p.h} | 0 animations/pulser.cpp | 2 +- animations/{pulser.h => pulser_p.h} | 0 animations/rotation.cpp | 2 +- animations/{rotation.h => rotation_p.h} | 0 animations/slide.cpp | 2 +- animations/{slide.h => slide_p.h} | 0 animator.cpp | 14 +++++++------- 15 files changed, 14 insertions(+), 14 deletions(-) rename animations/{expand.h => expand_p.h} (100%) rename animations/{fade.h => fade_p.h} (100%) rename animations/{grow.h => grow_p.h} (100%) rename animations/{pause.h => pause_p.h} (100%) rename animations/{pulser.h => pulser_p.h} (100%) rename animations/{rotation.h => rotation_p.h} (100%) rename animations/{slide.h => slide_p.h} (100%) diff --git a/animations/expand.cpp b/animations/expand.cpp index 12ade0e50..edf82f06b 100644 --- a/animations/expand.cpp +++ b/animations/expand.cpp @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include "expand.h" +#include "expand_p.h" #include #include diff --git a/animations/expand.h b/animations/expand_p.h similarity index 100% rename from animations/expand.h rename to animations/expand_p.h diff --git a/animations/fade.cpp b/animations/fade.cpp index 6fd6f84ca..fa62b777b 100644 --- a/animations/fade.cpp +++ b/animations/fade.cpp @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include "fade.h" +#include "fade_p.h" #include #include diff --git a/animations/fade.h b/animations/fade_p.h similarity index 100% rename from animations/fade.h rename to animations/fade_p.h diff --git a/animations/grow.cpp b/animations/grow.cpp index b63745b45..5881ff457 100644 --- a/animations/grow.cpp +++ b/animations/grow.cpp @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include "grow.h" +#include "grow_p.h" #include #include diff --git a/animations/grow.h b/animations/grow_p.h similarity index 100% rename from animations/grow.h rename to animations/grow_p.h diff --git a/animations/pause.cpp b/animations/pause.cpp index 24c69bf58..c9fb9ce5a 100644 --- a/animations/pause.cpp +++ b/animations/pause.cpp @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include "pause.h" +#include "pause_p.h" #include diff --git a/animations/pause.h b/animations/pause_p.h similarity index 100% rename from animations/pause.h rename to animations/pause_p.h diff --git a/animations/pulser.cpp b/animations/pulser.cpp index a265da2c2..364850c52 100644 --- a/animations/pulser.cpp +++ b/animations/pulser.cpp @@ -20,7 +20,7 @@ * - fix centering of pulsed shadow object */ -#include "pulser.h" +#include "pulser_p.h" #include #include diff --git a/animations/pulser.h b/animations/pulser_p.h similarity index 100% rename from animations/pulser.h rename to animations/pulser_p.h diff --git a/animations/rotation.cpp b/animations/rotation.cpp index b7e0a0f83..3ab6b8bf8 100644 --- a/animations/rotation.cpp +++ b/animations/rotation.cpp @@ -19,7 +19,7 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA // // 02110-1301 USA // ///////////////////////////////////////////////////////////////////////// -#include "rotation.h" +#include "rotation_p.h" #include diff --git a/animations/rotation.h b/animations/rotation_p.h similarity index 100% rename from animations/rotation.h rename to animations/rotation_p.h diff --git a/animations/slide.cpp b/animations/slide.cpp index 25e1eb5a6..13aa2f1f8 100644 --- a/animations/slide.cpp +++ b/animations/slide.cpp @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include "slide.h" +#include "slide_p.h" #include #include diff --git a/animations/slide.h b/animations/slide_p.h similarity index 100% rename from animations/slide.h rename to animations/slide_p.h diff --git a/animator.cpp b/animator.cpp index 2e9b2b9f6..e98ccd591 100644 --- a/animator.cpp +++ b/animator.cpp @@ -24,13 +24,13 @@ #include "animations/abstractanimation.h" #include "animations/animation.h" -#include "animations/expand.h" -#include "animations/fade.h" -#include "animations/grow.h" -#include "animations/pause.h" -#include "animations/pulser.h" -#include "animations/rotation.h" -#include "animations/slide.h" +#include "animations/expand_p.h" +#include "animations/fade_p.h" +#include "animations/grow_p.h" +#include "animations/pause_p.h" +#include "animations/pulser_p.h" +#include "animations/rotation_p.h" +#include "animations/slide_p.h" namespace Plasma {