summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqlistbox.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:44:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/man/man3/tqlistbox.3qt
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz
tqt-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqlistbox.3qt')
-rw-r--r--doc/man/man3/tqlistbox.3qt20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/man/man3/tqlistbox.3qt b/doc/man/man3/tqlistbox.3qt
index fe9ca6b35..189313092 100644
--- a/doc/man/man3/tqlistbox.3qt
+++ b/doc/man/man3/tqlistbox.3qt
@@ -25,13 +25,13 @@ Inherits QScrollView.
.BI "uint \fBcount\fR () const"
.br
.ti -1c
-.BI "void \fBinsertStringList\fR ( const QStringList & list, int index = -1 )"
+.BI "void \fBinsertStringList\fR ( const TQStringList & list, int index = -1 )"
.br
.ti -1c
-.BI "void \fBinsertStrList\fR ( const QStrList * list, int index = -1 )"
+.BI "void \fBinsertStrList\fR ( const TQStrList * list, int index = -1 )"
.br
.ti -1c
-.BI "void \fBinsertStrList\fR ( const QStrList & list, int index = -1 )"
+.BI "void \fBinsertStrList\fR ( const TQStrList & list, int index = -1 )"
.br
.ti -1c
.BI "void \fBinsertStrList\fR ( const char ** strings, int numStrings = -1, int index = -1 )"
@@ -441,7 +441,7 @@ If the user does not select anything, no signals are emitted and currentItem() r
.PP
A list box has WheelFocus as a default focusPolicy(), i.e. it can get keyboard focus by tabbing, clicking and through the use of the mouse wheel.
.PP
-New items can be inserted using insertItem(), insertStrList() or insertStringList(). inSort() is obsolete because this method is quite inefficient. It's preferable to insert the items normally and call sort() afterwards, or to insert a sorted QStringList().
+New items can be inserted using insertItem(), insertStrList() or insertStringList(). inSort() is obsolete because this method is quite inefficient. It's preferable to insert the items normally and call sort() afterwards, or to insert a sorted TQStringList().
.PP
By default, vertical and horizontal scroll bars are added and removed as necessary. setHScrollBarMode() and setVScrollBarMode() can be used to change this policy.
.PP
@@ -696,24 +696,24 @@ Inserts a new list box pixmap item with the pixmap \fIpixmap\fR and the text \fI
If \fIindex\fR is negative, \fIpixmap\fR is inserted at the end of the list.
.PP
See also insertStrList().
-.SH "void QListBox::insertStrList ( const QStrList * list, int index = -1 )"
+.SH "void QListBox::insertStrList ( const TQStrList * list, int index = -1 )"
Inserts the string list \fIlist\fR into the list at position \fIindex\fR.
.PP
If \fIindex\fR is negative, \fIlist\fR is inserted at the end of the list. If \fIindex\fR is too large, the operation is ignored.
.PP
-\fBWarning:\fR This function uses \fCconst char *\fR rather than TQString, so we recommend against using it. It is provided so that legacy code will continue to work, and so that programs that certainly will not need to handle code outside a single 8-bit locale can use it. See insertStringList() which uses real QStrings.
+\fBWarning:\fR This function uses \fCconst char *\fR rather than TQString, so we recommend against using it. It is provided so that legacy code will continue to work, and so that programs that certainly will not need to handle code outside a single 8-bit locale can use it. See insertStringList() which uses real TQStrings.
.PP
\fBWarning:\fR This function is never significantly faster than a loop around insertItem().
.PP
See also insertItem() and insertStringList().
-.SH "void QListBox::insertStrList ( const QStrList & list, int index = -1 )"
+.SH "void QListBox::insertStrList ( const TQStrList & list, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Inserts the string list \fIlist\fR into the list at position \fIindex\fR.
.PP
If \fIindex\fR is negative, \fIlist\fR is inserted at the end of the list. If \fIindex\fR is too large, the operation is ignored.
.PP
-\fBWarning:\fR This function uses \fCconst char *\fR rather than TQString, so we recommend against using it. It is provided so that legacy code will continue to work, and so that programs that certainly will not need to handle code outside a single 8-bit locale can use it. See insertStringList() which uses real QStrings.
+\fBWarning:\fR This function uses \fCconst char *\fR rather than TQString, so we recommend against using it. It is provided so that legacy code will continue to work, and so that programs that certainly will not need to handle code outside a single 8-bit locale can use it. See insertStringList() which uses real TQStrings.
.PP
\fBWarning:\fR This function is never significantly faster than a loop around insertItem().
.PP
@@ -725,12 +725,12 @@ Inserts the \fInumStrings\fR strings of the array \fIstrings\fR into the list at
.PP
If \fIindex\fR is negative, insertStrList() inserts \fIstrings\fR at the end of the list. If \fIindex\fR is too large, the operation is ignored.
.PP
-\fBWarning:\fR This function uses \fCconst char *\fR rather than TQString, so we recommend against using it. It is provided so that legacy code will continue to work, and so that programs that certainly will not need to handle code outside a single 8-bit locale can use it. See insertStringList() which uses real QStrings.
+\fBWarning:\fR This function uses \fCconst char *\fR rather than TQString, so we recommend against using it. It is provided so that legacy code will continue to work, and so that programs that certainly will not need to handle code outside a single 8-bit locale can use it. See insertStringList() which uses real TQStrings.
.PP
\fBWarning:\fR This function is never significantly faster than a loop around insertItem().
.PP
See also insertItem() and insertStringList().
-.SH "void QListBox::insertStringList ( const QStringList & list, int index = -1 )"
+.SH "void QListBox::insertStringList ( const TQStringList & list, int index = -1 )"
Inserts the string list \fIlist\fR into the list at position \fIindex\fR.
.PP
If \fIindex\fR is negative, \fIlist\fR is inserted at the end of the list. If \fIindex\fR is too large, the operation is ignored.