summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqfiledialog.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/man/man3/tqfiledialog.3qt
parent8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff)
downloadtqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz
tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqfiledialog.3qt')
-rw-r--r--doc/man/man3/tqfiledialog.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqfiledialog.3qt b/doc/man/man3/tqfiledialog.3qt
index 4bdadcc70..0232858ab 100644
--- a/doc/man/man3/tqfiledialog.3qt
+++ b/doc/man/man3/tqfiledialog.3qt
@@ -11,7 +11,7 @@ TQFileDialog \- Dialogs that allow users to select files or directories
.SH SYNOPSIS
\fC#include <tqfiledialog.h>\fR
.PP
-Inherits QDialog.
+Inherits TQDialog.
.PP
.SS "Public Members"
.in +1c
@@ -214,7 +214,7 @@ Inherits QDialog.
.SS "Protected Members"
.in +1c
.ti -1c
-.BI "void \fBaddWidgets\fR ( TQLabel * l, TQWidget * w, QPushButton * b )"
+.BI "void \fBaddWidgets\fR ( TQLabel * l, TQWidget * w, TQPushButton * b )"
.br
.ti -1c
.BI "void \fBaddToolButton\fR ( QButton * b, bool separator = FALSE )"
@@ -293,7 +293,7 @@ The last important function you will need to use when creating your own file dia
.br
TQString fileName;
.br
- if ( fd->exec() == QDialog::Accepted )
+ if ( fd->exec() == TQDialog::Accepted )
.br
fileName = fd->selectedFile();
.br
@@ -447,7 +447,7 @@ See also addLeftWidget(), addWidgets(), and addToolButton().
Adds the tool button \fIb\fR to the row of tool buttons at the top of the file dialog. The button is appended to the right of this row. If \fIseparator\fR is TRUE, a small space is inserted between the last button of the row and the new button \fIb\fR.
.PP
See also addWidgets(), addLeftWidget(), and addRightWidget().
-.SH "void TQFileDialog::addWidgets ( TQLabel * l, TQWidget * w, QPushButton * b )\fC [protected]\fR"
+.SH "void TQFileDialog::addWidgets ( TQLabel * l, TQWidget * w, TQPushButton * b )\fC [protected]\fR"
Adds the specified widgets to the bottom of the file dialog. The label \fIl\fR is placed underneath the "file name" and the "file types" labels. The widget \fIw\fR is placed underneath the file types combobox. The button \fIb\fR is placed underneath the Cancel pushbutton.
.PP
.nf
@@ -460,9 +460,9 @@ Adds the specified widgets to the bottom of the file dialog. The label \fIl\fR i
.br
TQLabel* label = new TQLabel( "Added widgets", this );
.br
- QLineEdit* lineedit = new QLineEdit( this );
+ TQLineEdit* lineedit = new TQLineEdit( this );
.br
- QPushButton* pushbutton = new QPushButton( this );
+ TQPushButton* pushbutton = new TQPushButton( this );
.br
.br
addWidgets( label, lineedit, pushbutton );