From: Geir Vattekar Date: Tue, 21 Aug 2012 12:10:39 +0000 (+0200) Subject: Doc: Small updates to QMenu's addAction() methods. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=46608f98c65fb27e18458e10f015338f352223d9;p=profile%2Fivi%2Fqtbase.git Doc: Small updates to QMenu's addAction() methods. Task-number: QTBUG-26792 Change-Id: I41289cf10065161baca368ca195268d39cdff6cf Reviewed-by: Venugopal Shivashankar Reviewed-by: Geir Vattekar Reviewed-by: Jerome Pasion Reviewed-by: Marc Mutz --- diff --git a/src/widgets/widgets/qmenu.cpp b/src/widgets/widgets/qmenu.cpp index 6cc17e1..d6846e4 100644 --- a/src/widgets/widgets/qmenu.cpp +++ b/src/widgets/widgets/qmenu.cpp @@ -1368,6 +1368,8 @@ QMenu::~QMenu() The function adds the newly created action to the menu's list of actions, and returns it. + QMenu takes ownership of the returned QAction. + \sa QWidget::addAction() */ QAction *QMenu::addAction(const QString &text) @@ -1384,6 +1386,8 @@ QAction *QMenu::addAction(const QString &text) and some \a text. The function adds the newly created action to the menu's list of actions, and returns it. + QMenu takes ownership of the returned QAction. + \sa QWidget::addAction() */ QAction *QMenu::addAction(const QIcon &icon, const QString &text) @@ -1402,6 +1406,8 @@ QAction *QMenu::addAction(const QIcon &icon, const QString &text) \a receiver's \a member slot. The function adds the newly created action to the menu's list of actions and returns it. + QMenu takes ownership of the returned QAction. + \sa QWidget::addAction() */ QAction *QMenu::addAction(const QString &text, const QObject *receiver, const char* member, const QKeySequence &shortcut) @@ -1426,6 +1432,8 @@ QAction *QMenu::addAction(const QString &text, const QObject *receiver, const ch \a member slot of the \a receiver object. The function adds the newly created action to the menu's list of actions, and returns it. + QMenu takes ownership of the returned QAction. + \sa QWidget::addAction() */ QAction *QMenu::addAction(const QIcon &icon, const QString &text, const QObject *receiver, @@ -1489,6 +1497,8 @@ QMenu *QMenu::addMenu(const QIcon &icon, const QString &title) action to this menu's list of actions. It returns the newly created action. + QMenu takes ownership of the returned QAction. + \sa QWidget::addAction() */ QAction *QMenu::addSeparator() @@ -1518,6 +1528,8 @@ QAction *QMenu::insertMenu(QAction *before, QMenu *menu) the newly created action into this menu's list of actions before action \a before and returns it. + QMenu takes ownership of the returned QAction. + \sa QWidget::insertAction(), addSeparator() */ QAction *QMenu::insertSeparator(QAction *before)