Skip to content

Commit

Permalink
Initialize more variables
Browse files Browse the repository at this point in the history
Change-Id: I22f98c1562887769bc0f262120bd524f6f3b64df
Reviewed-by: Martin Jones <martin.jones@nokia.com>
  • Loading branch information
Alan Alpert authored and Qt by Nokia committed Dec 22, 2011
1 parent 220b264 commit 32a17d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/quick/particles/qquickparticlesystem.cpp
Expand Up @@ -641,10 +641,12 @@ QQuickParticleSystem::QQuickParticleSystem(QQuickItem *parent) :
stateEngine(0),
m_animation(0),
m_running(true),
initialized(0),
particleCount(0),
m_nextIndex(0),
m_componentComplete(false),
m_paused(false)
m_paused(false),
m_empty(true)
{
connect(&m_painterMapper, SIGNAL(mapped(QObject*)),
this, SLOT(loadPainter(QObject*)));
Expand Down

0 comments on commit 32a17d2

Please sign in to comment.