summaryrefslogtreecommitdiffstats
path: root/doc/messageboxhandler.qdoc
diff options
context:
space:
mode:
authorArttu Tarkiainen <arttu.tarkiainen@qt.io>2021-09-15 09:34:26 +0300
committerArttu Tarkiainen <arttu.tarkiainen@qt.io>2021-09-15 09:34:26 +0300
commitbd62988a9b0b3d5576210f599d45ba5bdd3243ad (patch)
treebaace2b83380710e23e250c3609bc7d58f89728a /doc/messageboxhandler.qdoc
parentfce4d500a0394d4d46235f77a5cbb8fd2b5a5e68 (diff)
parent41865907dae243fc5508ec4df35a98317cfb817c (diff)
Merge "Merge remote-tracking branch 'origin/4.1' into master"
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.
*/