aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/particles/modelparticle.cpp
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2011-05-23 15:16:00 +1000
committerAlan Alpert <alan.alpert@nokia.com>2011-05-23 15:16:00 +1000
commit52d1ff7d3f302d3f4fc84085e4c4c9bd31c4e359 (patch)
treef393b3dc07c8efcf2617ceb6ad80adb9a4e83d53 /src/imports/particles/modelparticle.cpp
parent2c5df92e860f8fba494b62ce6ee619766f004490 (diff)
Split up ModelParticle
Now has DataParticle (with model and delegate) and an ItemParticle (which you just feed items manually). ModelParticle left for now for damage control - it will probably just disappear someday.
Diffstat (limited to 'src/imports/particles/modelparticle.cpp')
-rw-r--r--src/imports/particles/modelparticle.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/imports/particles/modelparticle.cpp b/src/imports/particles/modelparticle.cpp
index 9d326db83d..85d6e15157 100644
--- a/src/imports/particles/modelparticle.cpp
+++ b/src/imports/particles/modelparticle.cpp
@@ -49,6 +49,7 @@ QT_BEGIN_NAMESPACE
ModelParticle::ModelParticle(QSGItem *parent) :
ParticleType(parent), m_ownModel(false), m_comp(0), m_model(0), m_fade(true), m_modelCount(0)
{
+ qDebug() << "Deprecation warning: ModelParticle has bifurcated. I really should just delete this class";//TODO: What he said
setFlag(QSGItem::ItemHasContents);
}