summaryrefslogtreecommitdiffstats
path: root/doc/messageboxhandler.qdoc
diff options
context:
space:
mode:
authorArttu Tarkiainen <arttu.tarkiainen@qt.io>2021-08-02 17:46:55 +0300
committerArttu Tarkiainen <arttu.tarkiainen@qt.io>2021-08-16 11:45:44 +0000
commit08e82c7f25401770fcd293d0bae1c08db30abf7d (patch)
tree9257640ea9bd556838a18ba7cce0fb6fff6006fd /doc/messageboxhandler.qdoc
parent2979370041ce9ba09194e9acce318054b833cf9f (diff)
Fix misc QDoc warnings4.1
Task-number: QTIFW-2253 Change-Id: Idf0216c1b4491160ee06924241bf26aaace9c883 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'doc/messageboxhandler.qdoc')
-rw-r--r--doc/messageboxhandler.qdoc14
1 files changed, 9 insertions, 5 deletions
diff --git a/doc/messageboxhandler.qdoc b/doc/messageboxhandler.qdoc
index 259dfc490..30f0b2723 100644
--- a/doc/messageboxhandler.qdoc
+++ b/doc/messageboxhandler.qdoc
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2017 The Qt Company Ltd.
+** Copyright (C) 2021 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the Qt Installer Framework.
@@ -79,26 +79,30 @@
\qmlmethod Button QMessageBox::critical(string identifier, string title, string text,
Buttons buttons = QMessageBox.Ok, Button button = QMessageBox.NoButton)
- Opens a critical message box with the given \a title and \a text.
+ Opens a critical message box with the parent \a parent, identifier \a identifier,
+ title \a title, and text \a text.
*/
/*!
\qmlmethod Button QMessageBox::information(string identifier, string title, string text,
Buttons buttons = QMessageBox.Ok, Button button = QMessageBox.NoButton)
- Opens an information message box with the given \a title and \a text.
+ Opens an information message box with the parent \a parent, identifier \a identifier,
+ title \a title, and text \a text.
*/
/*!
\qmlmethod Button QMessageBox::question(string identifier, string title, string text,
Buttons buttons = QMessageBox.Yes | QMessageBox.No, Button button = QMessageBox.NoButton)
- Opens a question message box with the given \a title and \a text.
+ Opens a question message box with the parent \a parent, identifier \a identifier,
+ title \a title, and text \a text.
*/
/*!
\qmlmethod Button QMessageBox::warning(string identifier, string title, string text,
Buttons buttons = QMessageBox.Ok, Button button = QMessageBox.NoButton)
- Opens a warning message box with the given \a title and \a text.
+ Opens a warning message box with the parent \a parent, identifier \a identifier,
+ title \a title, and text \a text.
*/