summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxitem.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2009-07-22 07:03:13 (GMT)
committerLars Knoll <lars.knoll@nokia.com>2009-07-22 07:03:13 (GMT)
commit7fd162fe2d38882ae81f6a7b7cf6a313764fdf0e (patch)
treeb8e7e87664267f7bfda95743fed53ce8e83f42f0 /src/declarative/fx/qfxitem.cpp
parentd5f46ae26ee0cd4a3ccdde526f011b3bdd884abc (diff)
downloadQt-7fd162fe2d38882ae81f6a7b7cf6a313764fdf0e.zip
Qt-7fd162fe2d38882ae81f6a7b7cf6a313764fdf0e.tar.gz
Qt-7fd162fe2d38882ae81f6a7b7cf6a313764fdf0e.tar.bz2
remove the id property in QFxItem
id's are handled by QML directly; the id property here is not actually used anymore.
Diffstat (limited to 'src/declarative/fx/qfxitem.cpp')
-rw-r--r--src/declarative/fx/qfxitem.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/declarative/fx/qfxitem.cpp b/src/declarative/fx/qfxitem.cpp
index 42ff436..212496c 100644
--- a/src/declarative/fx/qfxitem.cpp
+++ b/src/declarative/fx/qfxitem.cpp
@@ -1068,34 +1068,6 @@ void QFxItem::keyReleaseEvent(QKeyEvent *event)
*/
/*!
- \property QFxItem::id
- This property holds the identifier for the item.
-
- The identifier can be used in bindings and other expressions to
- refer to the item. For example:
-
- \qml
- Text { id: myText; ... }
- Text { text: myText.text }
- \endqml
-
- The identifier is available throughout the \l {components}{component}
- where it is declared. The identifier must be unique in thecomponent.
-*/
-QString QFxItem::id() const
-{
- Q_D(const QFxItem);
- return d->_id;
-}
-
-void QFxItem::setId(const QString &id)
-{
- Q_D(QFxItem);
- setObjectName(id);
- d->_id = id;
-}
-
-/*!
\internal
*/
QFxAnchorLine QFxItem::left() const