summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2009-05-04 13:09:22 (GMT)
committerMartin Smith <msmith@trolltech.com>2009-05-04 13:09:22 (GMT)
commitba8d03242f720c11ed89092f3f1a0d8a41f35a04 (patch)
treeede55e8e389d2285e88532cd18203adc41581bda
parentdf54401470007cd4970b3ca8409edc9c4dcd7abf (diff)
downloadQt-ba8d03242f720c11ed89092f3f1a0d8a41f35a04.zip
Qt-ba8d03242f720c11ed89092f3f1a0d8a41f35a04.tar.gz
Qt-ba8d03242f720c11ed89092f3f1a0d8a41f35a04.tar.bz2
qdoc: Corrected some qdoc warnings.
-rw-r--r--src/declarative/fx/qfxitem.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/declarative/fx/qfxitem.cpp b/src/declarative/fx/qfxitem.cpp
index 53e198f..84dc484 100644
--- a/src/declarative/fx/qfxitem.cpp
+++ b/src/declarative/fx/qfxitem.cpp
@@ -1604,12 +1604,20 @@ void QFxItem::setKeepMouseGrab(bool keep)
d->_keepMouse = keep;
}
-void QFxItem::activeFocusChanged(bool)
+/*!
+ This function emits the \e activeFocusChanged signal.
+ \a flag is not used.
+ */
+void QFxItem::activeFocusChanged(bool flag)
{
emit activeFocusChanged();
}
-void QFxItem::focusChanged(bool)
+/*!
+ This function emits the \e focusChanged signal.
+ \a flag is not used.
+ */
+void QFxItem::focusChanged(bool flag)
{
emit focusChanged();
}