summaryrefslogtreecommitdiffstats
path: root/doc/man
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man')
-rw-r--r--doc/man/man3/qapplication.3qt6
-rw-r--r--doc/man/man3/qmessagebox.3qt8
2 files changed, 7 insertions, 7 deletions
diff --git a/doc/man/man3/qapplication.3qt b/doc/man/man3/qapplication.3qt
index 88db7b84..19693773 100644
--- a/doc/man/man3/qapplication.3qt
+++ b/doc/man/man3/qapplication.3qt
@@ -175,7 +175,7 @@ Inherits QObject.
.BI "void \fBcloseAllWindows\fR ()"
.br
.ti -1c
-.BI "void \fBaboutQt\fR ()"
+.BI "void \fBaboutTQt\fR ()"
.br
.in -1c
.SS "Signals"
@@ -622,12 +622,12 @@ Create an application, given an already open display \fIdpy\fR and using \fIargc
This is available only on X11.
.SH "QApplication::~QApplication ()\fC [virtual]\fR"
Cleans up any window system resources that were allocated by this application. Sets the global variable \fCqApp\fR to 0.
-.SH "void QApplication::aboutQt ()\fC [slot]\fR"
+.SH "void QApplication::aboutTQt ()\fC [slot]\fR"
Displays a simple message box about Qt. The message includes the version number of Qt being used by the application.
.PP
This is useful for inclusion in the Help menu of an application. See the examples/menu/menu.cpp example.
.PP
-This function is a convenience slot for QMessageBox::aboutQt().
+This function is a convenience slot for QMessageBox::aboutTQt().
.SH "void QApplication::aboutToQuit ()\fC [signal]\fR"
This signal is emitted when the application is about to quit the main event loop, e.g. when the event loop level drops to zero. This may happen either after a call to quit() from inside the application or when the users shuts down the entire desktop session.
.PP
diff --git a/doc/man/man3/qmessagebox.3qt b/doc/man/man3/qmessagebox.3qt
index 843eaacb..4785bbc6 100644
--- a/doc/man/man3/qmessagebox.3qt
+++ b/doc/man/man3/qmessagebox.3qt
@@ -91,7 +91,7 @@ Inherits QDialog.
.BI "void \fBabout\fR ( QWidget * parent, const QString & caption, const QString & text )"
.br
.ti -1c
-.BI "void \fBaboutQt\fR ( QWidget * parent, const QString & caption = QString::null )"
+.BI "void \fBaboutTQt\fR ( QWidget * parent, const QString & caption = QString::null )"
.br
.ti -1c
.BI "int message ( const QString & caption, const QString & text, const QString & buttonText = QString::null, QWidget * parent = 0, const char * = 0 ) \fI(obsolete)\fR"
@@ -332,7 +332,7 @@ QMessageBox provides a very simple About box which displays an appropriate icon
.PP
See about() for more information.
.PP
-If you want your users to know that the application is built using Qt (so they know that you use high quality tools) you might like to add an "About Qt" menu option under the Help menu to invoke aboutQt().
+If you want your users to know that the application is built using Qt (so they know that you use high quality tools) you might like to add an "About Qt" menu option under the Help menu to invoke aboutTQt().
.PP
If none of the standard message boxes is suitable, you can create a QMessageBox from scratch and use custom button texts:
.PP
@@ -536,14 +536,14 @@ See also QWidget::icon and QApplication::mainWidget().
.PP
Examples:
.)l action/application.cpp, application/application.cpp, chart/chartform.cpp, helpviewer/helpwindow.cpp, mdi/application.cpp, menu/menu.cpp, and themes/themes.cpp.
-.SH "void QMessageBox::aboutQt ( QWidget * parent, const QString & caption = QString::null )\fC [static]\fR"
+.SH "void QMessageBox::aboutTQt ( QWidget * parent, const QString & caption = QString::null )\fC [static]\fR"
Displays a simple message box about Qt, with caption \fIcaption\fR and centered over \fIparent\fR (if \fIparent\fR is not 0). The message includes the version number of Qt being used by the application.
.PP
This is useful for inclusion in the Help menu of an application. See the examples/menu/menu.cpp example.
.PP
QApplication provides this functionality as a slot.
.PP
-See also QApplication::aboutQt().
+See also QApplication::aboutTQt().
.PP
Examples:
.)l action/application.cpp, application/application.cpp, chart/chartform.cpp, helpviewer/helpwindow.cpp, menu/menu.cpp, themes/themes.cpp, and trivial/trivial.cpp.