~kubuntu-members/kapman/4.11

« back to all changes in this revision

Viewing changes to ghostitem.cpp

  • Committer: Thomas Gallinari
  • Date: 2008-05-14 00:01:06 UTC
  • Revision ID: git-v1:19a04402bc090a33353513938b536f0d0d062a2f
Improving bonus management : bonus item is no longer created on each bonus display, it is now created once per game and its image is changed from a single svg (bonus.svg)

svn path=/trunk/playground/games/kapman/; revision=807567

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
        connect(p_model, SIGNAL(stateChanged()), this, SLOT(updateState()));
23
23
        m_startBlinkingTimer = new QTimer(this);
24
24
        m_startBlinkingTimer->setInterval(7500);
 
25
        m_startBlinkingTimer->setSingleShot(true);
25
26
        connect(m_startBlinkingTimer, SIGNAL(timeout()), this, SLOT(startBlinking()));
26
27
}
27
28