Kaydet (Commit) 5a68d2cb authored tarafından Julien Nabet's avatar Julien Nabet Kaydeden (comit) Michael Stahl

Fix member variables not initialized in constructor

Change-Id: I17275e7e17f76da967d2fa798f5ee88b50fd6d72
Reviewed-on: https://gerrit.libreoffice.org/2121Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
Tested-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst 646dc01e
...@@ -379,7 +379,7 @@ public: ...@@ -379,7 +379,7 @@ public:
virtual void interpolate(double t,double SlideWidthScale,double SlideHeightScale) const = 0; virtual void interpolate(double t,double SlideWidthScale,double SlideHeightScale) const = 0;
protected: protected:
Operation(){} Operation():bInterpolate(false), nT0(0.0), nT1(0.0){}
}; };
/** this class is a generic CounterClockWise(CCW) rotation with an axis angle /** this class is a generic CounterClockWise(CCW) rotation with an axis angle
......
...@@ -283,7 +283,7 @@ private: ...@@ -283,7 +283,7 @@ private:
class Operation class Operation
{ {
public: public:
Operation(){} Operation():bInterpolate(false), nT0(0.0), nT1(0.0){}
virtual ~Operation(){} virtual ~Operation(){}
/** 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. /** 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.
......
...@@ -290,7 +290,7 @@ private: ...@@ -290,7 +290,7 @@ private:
class Operation class Operation
{ {
public: public:
Operation(){} Operation():bInterpolate(false), nT0(0.0), nT1(0.0){}
virtual ~Operation(){} virtual ~Operation(){}
/** 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. /** 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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment