Doc: Small updates to QMenu's addAction() methods.
authorGeir Vattekar <geir.vattekar@nokia.com>
Tue, 21 Aug 2012 12:10:39 +0000 (14:10 +0200)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Thu, 27 Sep 2012 21:51:30 +0000 (23:51 +0200)
Task-number: QTBUG-26792
Change-Id: I41289cf10065161baca368ca195268d39cdff6cf
Reviewed-by: Venugopal Shivashankar <venugopal.shivashankar@digia.com>
Reviewed-by: Geir Vattekar <geir.vattekar@digia.com>
Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
src/widgets/widgets/qmenu.cpp

index 6cc17e1..d6846e4 100644 (file)
@@ -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)