diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/man/man3/tqdatabrowser.3qt | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-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/tqdatabrowser.3qt')
-rw-r--r-- | doc/man/man3/tqdatabrowser.3qt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqdatabrowser.3qt b/doc/man/man3/tqdatabrowser.3qt index 6171e73ad..7d7e4fe05 100644 --- a/doc/man/man3/tqdatabrowser.3qt +++ b/doc/man/man3/tqdatabrowser.3qt @@ -37,10 +37,10 @@ Inherits TQWidget. .BI "void \fBsetSort\fR ( const TQSqlIndex & sort )" .br .ti -1c -.BI "void \fBsetSort\fR ( const QStringList & sort )" +.BI "void \fBsetSort\fR ( const TQStringList & sort )" .br .ti -1c -.BI "QStringList \fBsort\fR () const" +.BI "TQStringList \fBsort\fR () const" .br .ti -1c .BI "void \fBsetFilter\fR ( const TQString & filter )" @@ -214,7 +214,7 @@ Inherits TQWidget. .BI "bool \fBreadOnly\fR - whether the browser is read-only" .br .ti -1c -.BI "QStringList \fBsort\fR - the data browser's sort" +.BI "TQStringList \fBsort\fR - the data browser's sort" .br .in -1c .SS "Protected Members" @@ -433,7 +433,7 @@ Sets the data browser's filter to \fIfilter\fR. See the "filter" property for de Sets the browser's default form to \fIform\fR. The cursor and all navigation and data manipulation functions that the browser provides become available to the \fIform\fR. .SH "void TQDataBrowser::setReadOnly ( bool active )\fC [virtual]\fR" Sets whether the browser is read-only to \fIactive\fR. See the "readOnly" property for details. -.SH "void TQDataBrowser::setSort ( const QStringList & sort )" +.SH "void TQDataBrowser::setSort ( const TQStringList & sort )" Sets the data browser's sort to \fIsort\fR. See the "sort" property for details. .SH "void TQDataBrowser::setSort ( const TQSqlIndex & sort )" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. @@ -443,7 +443,7 @@ Sets the data browser's sort to the TQSqlIndex \fIsort\fR. To apply the new sort Sets the default cursor used by the data browser to \fIcursor\fR. If \fIautoDelete\fR is TRUE (the default is FALSE), the data browser takes ownership of the \fIcursor\fR pointer, which will be deleted when the browser is destroyed, or when setSqlCursor() is called again. To activate the \fIcursor\fR use refresh(). The cursor's edit buffer is used in the default form to browse and edit records. .PP See also sqlCursor(), form(), and setForm(). -.SH "QStringList TQDataBrowser::sort () const" +.SH "TQStringList TQDataBrowser::sort () const" Returns the data browser's sort. See the "sort" property for details. .SH "TQSqlCursor * TQDataBrowser::sqlCursor () const" Returns the default cursor used for navigation, or 0 if there is no default cursor. @@ -538,7 +538,7 @@ This property holds whether the browser is read-only. The default is FALSE, i.e. data can be edited. If the data browser is read-only, no database edits will be allowed. .PP Set this property's value with setReadOnly() and get this property's value with isReadOnly(). -.SH "QStringList sort" +.SH "TQStringList sort" This property holds the data browser's sort. .PP The data browser's sort affects the order in which records are viewed in the browser. Call refresh() to apply the new sort. @@ -551,9 +551,9 @@ Note that if you want to iterate over the list, you should iterate over a copy, .PP .nf .br - QStringList list = myDataBrowser.sort(); + TQStringList list = myDataBrowser.sort(); .br - QStringList::Iterator it = list.begin(); + TQStringList::Iterator it = list.begin(); .br while( it != list.end() ) { .br |