summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtable.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
commit87d29563e3ccdeb7fea0197e262e667ef323ff9c (patch)
tree2d674f204c5205ca577a782e1b50583afd563972 /doc/man/man3/tqtable.3qt
parent628b0bb74c3fc327efff8add9c73ada04b1cbea2 (diff)
downloadtqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.tar.gz
tqt3-87d29563e3ccdeb7fea0197e262e667ef323ff9c.zip
Rename utility class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqtable.3qt')
-rw-r--r--doc/man/man3/tqtable.3qt10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqtable.3qt b/doc/man/man3/tqtable.3qt
index 7e2557a1d..ed03cdd78 100644
--- a/doc/man/man3/tqtable.3qt
+++ b/doc/man/man3/tqtable.3qt
@@ -309,13 +309,13 @@ Inherited by TQDataTable.
.BI "virtual void \fBremoveRow\fR ( int row )"
.br
.ti -1c
-.BI "virtual void \fBremoveRows\fR ( const QMemArray<int> & rows )"
+.BI "virtual void \fBremoveRows\fR ( const TQMemArray<int> & rows )"
.br
.ti -1c
.BI "virtual void \fBremoveColumn\fR ( int col )"
.br
.ti -1c
-.BI "virtual void \fBremoveColumns\fR ( const QMemArray<int> & cols )"
+.BI "virtual void \fBremoveColumns\fR ( const TQMemArray<int> & cols )"
.br
.ti -1c
.BI "virtual void \fBeditCell\fR ( int row, int col, bool replace = FALSE )"
@@ -847,7 +847,7 @@ Examples:
.SH "int QTable::indexOf ( int row, int col ) const\fC [protected]\fR"
Returns a single integer which identifies a particular \fIrow\fR and \fIcol\fR by mapping the 2D table to a 1D array.
.PP
-This is useful, for example, if you have a sparse table and want to use a QIntDict to map integers to the cells that are used.
+This is useful, for example, if you have a sparse table and want to use a TQIntDict to map integers to the cells that are used.
.SH "void QTable::insertColumns ( int col, int count = 1 )\fC [virtual slot]\fR"
Inserts \fIcount\fR empty columns at column \fIcol\fR. Also clears the selection(s).
.PP
@@ -978,7 +978,7 @@ See also TQt::ButtonState.
Removes column \fIcol\fR, and deletes all its cells including any table items and widgets the cells may contain. Also clears the selection(s).
.PP
See also removeColumns(), hideColumn(), insertColumns(), and removeRow().
-.SH "void QTable::removeColumns ( const QMemArray<int> & cols )\fC [virtual slot]\fR"
+.SH "void QTable::removeColumns ( const TQMemArray<int> & cols )\fC [virtual slot]\fR"
Removes the columns listed in the array \fIcols\fR, and deletes all their cells including any table items and widgets the cells may contain.
.PP
The array passed in must only contain valid columns (in the range from 0 to numCols() - 1) with no duplicates, and must be sorted in ascending order. Also clears the selection(s).
@@ -988,7 +988,7 @@ See also removeColumn(), insertColumns(), and removeRows().
Removes row \fIrow\fR, and deletes all its cells including any table items and widgets the cells may contain. Also clears the selection(s).
.PP
See also hideRow(), insertRows(), removeColumn(), and removeRows().
-.SH "void QTable::removeRows ( const QMemArray<int> & rows )\fC [virtual slot]\fR"
+.SH "void QTable::removeRows ( const TQMemArray<int> & rows )\fC [virtual slot]\fR"
Removes the rows listed in the array \fIrows\fR, and deletes all their cells including any table items and widgets the cells may contain.
.PP
The array passed in must only contain valid rows (in the range from 0 to numRows() - 1) with no duplicates, and must be sorted in ascending order. Also clears the selection(s).