summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qmlgraphicsparticles.cpp
Commit message (Collapse)AuthorAgeFilesLines
* fix includesOswald Buddenhagen2009-12-031-10/+13
| | | | | | | | | | | | - include headers from own directory with "" - include headers from own project without private/ - sort includes from most specific to most generic - make headers self-contained - some whitespace unification no attempt was made at making the qt includes consistent regarding the use of module names and forwarding headers. no attempt was made at sorting includes.
* Undo most of 913dd563064e8047fe738fc9c79135adfb928977Warwick Allison2009-12-021-5/+5
| | | | It seems we're going to have to so a syncqt/configure in Qt modules.
* Remove include styles that rely on configure.Warwick Allison2009-12-011-4/+4
| | | | May help modularization (syncqt and configure are Qt-specific).
* Treat emissionRate=0 like emitting=falseAlan Alpert2009-11-251-44/+10
| | | | | | | | Including stopping the timer because we arenæt emitting anything. Because emissionRate=0 is exactly the same as emitting=false, the emitting property has been removed. Task-number: QTBUG-6209
* Doc fixes after \qmlmethod changes.Michael Brasser2009-11-111-1/+1
|
* remove unneeded constructorsYann Bodson2009-11-091-7/+0
|
* Get tests passing on MacAlan Alpert2009-11-051-11/+11
| | | | | | There was inconsistent rounding of text widths. Task-number: QT-4200 QT-4201
* Merge branch 'kinetic-declarativeui' of ↵Alan Alpert2009-11-051-5/+5
| | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
* Particles cleaned up and placed in in qmlgraphics/Alan Alpert2009-11-051-0/+1278
API changes: Removed bool streamIn Added int emissionRate Added int emissionVariance Added void burst(count, emissionRate=-1) While rewriting the internals to accomodate this, all other outstanding particles bugs were believed fixed. Task-number: QT-2392 QT-2391 QT-2390 QT-2406