]> git.sesse.net Git - kdenlive/commitdiff
Fix Coverity #980688
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Mon, 11 Feb 2013 23:51:03 +0000 (00:51 +0100)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Mon, 11 Feb 2013 23:51:03 +0000 (00:51 +0100)
src/beziercurve/beziersplineeditor.cpp

index 67097872c9440a3c9288cb72398fd844f11c7f6b..eef766a8ad7512fbf61805e3dcede44e709f318f 100644 (file)
 
 
 BezierSplineEditor::BezierSplineEditor(QWidget* parent) :
-        QWidget(parent),
-        m_mode(ModeNormal),
-        m_zoomLevel(0),
-        m_gridLines(3),
-        m_showAllHandles(true),
-        m_pixmapCache(NULL),
-        m_pixmapIsDirty(true),
-        m_currentPointIndex(-1)
+        QWidget(parent)
+        , m_mode(ModeNormal)
+        , m_zoomLevel(0)
+        , m_gridLines(3)
+        , m_showAllHandles(true)
+        , m_pixmapCache(NULL)
+        , m_pixmapIsDirty(true)
+        , m_currentPointIndex(-1)
+       , m_currentPointType(PTypeP)
+       , m_grabOffsetX(0)
+       , m_grabOffsetY(0)
 {
     setMouseTracking(true);
     setAutoFillBackground(false);