]> git.sesse.net Git - kdenlive/blobdiff - src/kis_curve_widget_p.h
Const'ref
[kdenlive] / src / kis_curve_widget_p.h
index 31f15e9e238bdff9186decbfaf53454e0180c226..035742d23990c1e546e585058e51ed0688450bdb 100644 (file)
@@ -77,7 +77,7 @@ public:
     inline void setState(enumState st);
     inline enumState state() const;
 
-
+    int m_maxPoints;
 
     /*** Internal routins ***/
 
@@ -131,6 +131,23 @@ public:
 KisCurveWidget::Private::Private(KisCurveWidget *parent)
 {
     m_curveWidget = parent;
+    m_grab_point_index = 0;
+    m_grabOffsetX = 0;
+    m_grabOffsetY = 0;
+    m_grabOriginalX = 0;
+    m_grabOriginalY = 0;
+    m_draggedAwayPointIndex = 0;
+    m_readOnlyMode = 0;
+    m_guideVisible = 0;
+    m_splineDirty = 0;
+    m_pixmapDirty = 0;
+    m_pixmapCache = NULL;
+    m_intIn = NULL;
+    m_intOut = NULL;
+    m_inOutMin = 0;
+    m_inOutMax = 0;
+    m_state = ST_NORMAL;
+    m_maxPoints = 0;
 }
 
 KisCurveWidget::Private::~Private()