From c6fd7be336038879d9d73dd86f32749bf46ef0cb Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Wed, 27 Aug 2014 16:51:07 +0200 Subject: no need to make these variables public Change-Id: I9b57d6811252c75186e03ed6928bd8829fa0307c --- slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.hxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.hxx b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.hxx index f66eebbdc463..0e8de1c55e5f 100644 --- a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.hxx +++ b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionImpl.hxx @@ -347,6 +347,7 @@ class Operation : private boost::noncopyable public: virtual ~Operation(){} +protected: /** Should this operation be interpolated . If TRUE, the transform will smoothly move from making no difference from t = 0.0 to nT0 to being completely transformed from t = nT1 to 1. If FALSE, the transform will be inneffectual from t = 0 to nT0, and completely transformed from t = nT0 to 1. */ bool bInterpolate; @@ -374,7 +375,8 @@ public: virtual void interpolate(double t,double SlideWidthScale,double SlideHeightScale) const = 0; protected: - Operation():bInterpolate(false), nT0(0.0), nT1(0.0){} + Operation(): + bInterpolate(false), nT0(0.0), nT1(0.0){} }; /** this class is a generic CounterClockWise(CCW) rotation with an axis angle -- cgit