summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdatatable.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/tqdatatable.3qt
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz
tqt3-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/tqdatatable.3qt')
-rw-r--r--doc/man/man3/tqdatatable.3qt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqdatatable.3qt b/doc/man/man3/tqdatatable.3qt
index 7e20c375..49b4ecd3 100644
--- a/doc/man/man3/tqdatatable.3qt
+++ b/doc/man/man3/tqdatatable.3qt
@@ -70,7 +70,7 @@ Inherits QTable.
.BI "TQString \fBfilter\fR () const"
.br
.ti -1c
-.BI "QStringList \fBsort\fR () const"
+.BI "TQStringList \fBsort\fR () const"
.br
.ti -1c
.BI "virtual void \fBsetSqlCursor\fR ( TQSqlCursor * cursor = 0, bool autoPopulate = FALSE, bool autoDelete = FALSE )"
@@ -115,7 +115,7 @@ Inherits QTable.
.BI "virtual void \fBsetFilter\fR ( const TQString & filter )"
.br
.ti -1c
-.BI "virtual void \fBsetSort\fR ( const QStringList & sort )"
+.BI "virtual void \fBsetSort\fR ( const TQStringList & sort )"
.br
.ti -1c
.BI "virtual void \fBsetSort\fR ( const TQSqlIndex & sort )"
@@ -238,7 +238,7 @@ Inherits QTable.
.BI "int \fBnumRows\fR - the number of rows in the table \fI(read " "only" ")\fR"
.br
.ti -1c
-.BI "QStringList \fBsort\fR - the data table's sort"
+.BI "TQStringList \fBsort\fR - the data table's sort"
.br
.ti -1c
.BI "TQString \fBtrueText\fR - the text used to represent true values"
@@ -504,7 +504,7 @@ Sets the data filter for the data table to \fIfilter\fR. See the "filter" proper
Sets the text used to represent NULL values to \fInullText\fR. See the "nullText" property for details.
.SH "void TQDataTable::setSize ( TQSqlCursor * sql )\fC [protected]\fR"
If the cursor's \fIsql\fR driver supports query sizes, the number of rows in the table is set to the size of the query. Otherwise, the table dynamically resizes itself as it is scrolled. If \fIsql\fR is not active, it is made active by issuing a select() on the cursor using the \fIsql\fR cursor's current filter and current sort.
-.SH "void TQDataTable::setSort ( const QStringList & sort )\fC [virtual]\fR"
+.SH "void TQDataTable::setSort ( const TQStringList & sort )\fC [virtual]\fR"
Sets the data table's sort to \fIsort\fR. See the "sort" property for details.
.SH "void TQDataTable::setSort ( const TQSqlIndex & sort )\fC [virtual]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
@@ -518,7 +518,7 @@ Sets \fIcursor\fR as the data source for the table. To force the display of the
See also refresh(), readOnly, setAutoDelete(), and TQSqlDriver::nullText().
.SH "void TQDataTable::setTrueText ( const TQString & trueText )\fC [virtual]\fR"
Sets the text used to represent true values to \fItrueText\fR. See the "trueText" property for details.
-.SH "QStringList TQDataTable::sort () const"
+.SH "TQStringList TQDataTable::sort () const"
Returns the data table's sort. See the "sort" property for details.
.SH "void TQDataTable::sortAscending ( int col )\fC [virtual slot]\fR"
Sorts column \fIcol\fR in ascending order.
@@ -637,7 +637,7 @@ Get this property's value with numCols().
This property holds the number of rows in the table.
.PP
Get this property's value with numRows().
-.SH "QStringList sort"
+.SH "TQStringList sort"
This property holds the data table's sort.
.PP
The table's sort affects the order in which data records are displayed in the table. To apply a sort, use refresh().
@@ -650,9 +650,9 @@ Note that if you want to iterate over the sort list, you should iterate over a c
.PP
.nf
.br
- QStringList list = myDataTable.sort();
+ TQStringList list = myDataTable.sort();
.br
- QStringList::Iterator it = list.begin();
+ TQStringList::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br