diff options
author | Bea Lam <bea.lam@nokia.com> | 2009-10-07 05:02:04 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2009-10-07 05:02:04 (GMT) |
commit | e79cf93c8b724c8eac042e68ba8dee0b9f2feee3 (patch) | |
tree | d99ea69b661fa00e15c1e5defc963730a8859bd1 /src/declarative/fx/qfxitem.cpp | |
parent | 4937e19f2ec5c51e31806eae1156bb3c19d1e485 (diff) | |
download | Qt-e79cf93c8b724c8eac042e68ba8dee0b9f2feee3.zip Qt-e79cf93c8b724c8eac042e68ba8dee0b9f2feee3.tar.gz Qt-e79cf93c8b724c8eac042e68ba8dee0b9f2feee3.tar.bz2 |
Remove redundant QFxItem::activeFocusChanged(); is not used anywhere,
presumedly replaced by QFxItem::focusChanged().
Diffstat (limited to 'src/declarative/fx/qfxitem.cpp')
-rw-r--r-- | src/declarative/fx/qfxitem.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/declarative/fx/qfxitem.cpp b/src/declarative/fx/qfxitem.cpp index 4d31aaa..6a9af1b 100644 --- a/src/declarative/fx/qfxitem.cpp +++ b/src/declarative/fx/qfxitem.cpp @@ -1257,12 +1257,6 @@ QFxKeysAttached *QFxKeysAttached::qmlAttachedProperties(QObject *obj) */ /*! - \fn void QFxItem::activeFocusChanged() - - This signal is emitted when this item gains active focus. -*/ - -/*! \fn void QFxItem::baselineOffsetChanged() This signal is emitted when the baseline offset of the item @@ -2260,16 +2254,6 @@ void QFxItem::setKeepMouseGrab(bool keep) } /*! - This function emits the \e activeFocusChanged signal. - \a flag is not used. - */ -void QFxItem::activeFocusChanged(bool flag) -{ - Q_UNUSED(flag); - emit activeFocusChanged(); -} - -/*! This function emits the \e focusChanged signal. Subclasses overriding this function should call up |