Fixes cppcheck warning: [src/effectstack/graphicsscenerectmove.cpp:490]: (warning) Member variable 'GraphicsSceneRectMove::m_moveStarted' is not initialized in the constructor.
Signed-off-by: Mikko Rapeli <mikko.rap...@iki.fi> --- src/effectstack/graphicsscenerectmove.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/effectstack/graphicsscenerectmove.cpp b/src/effectstack/graphicsscenerectmove.cpp index ce82b72..4f84c71 100644 --- a/src/effectstack/graphicsscenerectmove.cpp +++ b/src/effectstack/graphicsscenerectmove.cpp @@ -495,6 +495,7 @@ GraphicsSceneRectMove::GraphicsSceneRectMove(QObject *parent) : m_tool(TITLE_RECTANGLE), m_gridSize(20), m_createdText(false), + m_moveStarted(false), m_pan(false) { //grabMouse(); -- 2.10.2