diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-24 04:40:45 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-24 04:40:45 (GMT) |
commit | 3f4ad7b2066eb399f3ae2d6c888a9410a66c69b9 (patch) | |
tree | 38ad9b4d553c223859838f14a3cdaf66c817a1ae /src/declarative/fx/qfxpainted.cpp | |
parent | b7451b45e43f1f21bc2b9e35c330f4f27225307d (diff) | |
parent | be859f223b21ac21f889d278c30ddd653f9233fc (diff) | |
download | Qt-3f4ad7b2066eb399f3ae2d6c888a9410a66c69b9.zip Qt-3f4ad7b2066eb399f3ae2d6c888a9410a66c69b9.tar.gz Qt-3f4ad7b2066eb399f3ae2d6c888a9410a66c69b9.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'src/declarative/fx/qfxpainted.cpp')
-rw-r--r-- | src/declarative/fx/qfxpainted.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/declarative/fx/qfxpainted.cpp b/src/declarative/fx/qfxpainted.cpp index 8109efa..ad1b3ad 100644 --- a/src/declarative/fx/qfxpainted.cpp +++ b/src/declarative/fx/qfxpainted.cpp @@ -77,13 +77,12 @@ QT_BEGIN_NAMESPACE */ /*! - Constructs the painted item. + Constructs a painted item with parent object \a parent. */ - -//### what options do we need to set? QFxPainted::QFxPainted(QFxItem *parent) : QFxItem(*(new QFxPaintedPrivate), parent) { + //### what options do we need to set? setOptions(HasContents, true); } @@ -105,8 +104,9 @@ QFxPainted::QFxPainted(QFxPaintedPrivate &dd, QFxItem *parent) /*! \fn QFxPainted::paint(QPainter *painter) - Implement this method to paint the item. The painting will be cached and - paint() will only be called again if \l markDirty() has been called. + Implement this method to paint the item using \a painter. + The painting will be cached and paint() will only be called again + if \l markDirty() has been called. \sa markDirty() */ |