From e5508372122cfadc9a960a77dc16cdad94686ed8 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Wed, 30 Sep 2009 12:40:07 +0000 Subject: [PATCH] apidocs++ svn path=/trunk/KDE/kdelibs/; revision=1029643 --- widgets/combobox.h | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/widgets/combobox.h b/widgets/combobox.h index b7d3be8d3..cf496b3ad 100644 --- a/widgets/combobox.h +++ b/widgets/combobox.h @@ -89,8 +89,18 @@ public Q_SLOTS: void clear(); Q_SIGNALS: - void activated(const QString & text); - void textChanged(const QString & text); + /** + * This signal is sent when the user chooses an item in the combobox. + * The item's text is passed. + */ + void activated(const QString &text); + + /** + * This signal is sent whenever the currentIndex in the combobox changes + * either through user interaction or programmatically. + * The item's text is passed. + */ + void textChanged(const QString &text); protected: void resizeEvent(QGraphicsSceneResizeEvent *event);