From: Jean-Baptiste Mardelle Date: Fri, 9 Sep 2011 23:41:55 +0000 (+0000) Subject: cppcheck fixes, patch by Mikko Rapeli [10/27] X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=fb4272c6ff131e84535fcb0862a7fa58ad5b3b9c;p=kdenlive cppcheck fixes, patch by Mikko Rapeli [10/27] svn path=/trunk/kdenlive/; revision=5883 --- diff --git a/src/dvdwizardmenu.h b/src/dvdwizardmenu.h index 6a9d44ca..8c9931ec 100644 --- a/src/dvdwizardmenu.h +++ b/src/dvdwizardmenu.h @@ -36,7 +36,9 @@ class DvdScene : public QGraphicsScene { public: - DvdScene(QObject * parent = 0): QGraphicsScene(parent) {} + DvdScene(QObject * parent = 0): QGraphicsScene(parent) { + m_width = 0; m_height = 0; + } void setProfile(int width, int height) { m_width = width; m_height = height;