diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-18 15:42:48 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-19 23:47:08 +0900 |
commit | 541b90072523725854cb5d61f1bdce50dbcc6b31 (patch) | |
tree | 1452a8b6fbf1e91be0d2e5af7edf31b102b01fc6 /doc/man/man3/tqgridlayout.3qt | |
parent | d73937a9f779e2aafa6c392f94c9c29aa32b78fd (diff) | |
download | tqt-541b9007.tar.gz tqt-541b9007.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 089d5266f0fbf9be6612e9c5f92a3f008f29241c)
Diffstat (limited to 'doc/man/man3/tqgridlayout.3qt')
-rw-r--r-- | doc/man/man3/tqgridlayout.3qt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqgridlayout.3qt b/doc/man/man3/tqgridlayout.3qt index 8bf8f4615..d25e55c0a 100644 --- a/doc/man/man3/tqgridlayout.3qt +++ b/doc/man/man3/tqgridlayout.3qt @@ -225,11 +225,11 @@ Examples: .SH "void QGridLayout::addMultiCell ( QLayoutItem * item, int fromRow, int toRow, int fromCol, int toCol, int alignment = 0 )" Adds the \fIitem\fR to the cell grid, spanning multiple rows/columns. .PP -The cell will span from \fIfromRow\fR, \fIfromCol\fR to \fItoRow\fR, \fItoCol\fR. Alignment is specified by \fIalignment\fR, which is a bitwise OR of Qt::AlignmentFlags values. The default alignment is 0, which means that the widget fills the entire cell. +The cell will span from \fIfromRow\fR, \fIfromCol\fR to \fItoRow\fR, \fItoCol\fR. Alignment is specified by \fIalignment\fR, which is a bitwise OR of TQt::AlignmentFlags values. The default alignment is 0, which means that the widget fills the entire cell. .SH "void QGridLayout::addMultiCellLayout ( QLayout * layout, int fromRow, int toRow, int fromCol, int toCol, int alignment = 0 )" Adds the layout \fIlayout\fR to the cell grid, spanning multiple rows/columns. The cell will span from \fIfromRow\fR, \fIfromCol\fR to \fItoRow\fR, \fItoCol\fR. .PP -Alignment is specified by \fIalignment\fR, which is a bitwise OR of Qt::AlignmentFlags values. The default alignment is 0, which means that the widget fills the entire cell. +Alignment is specified by \fIalignment\fR, which is a bitwise OR of TQt::AlignmentFlags values. The default alignment is 0, which means that the widget fills the entire cell. .PP A non-zero alignment indicates that the layout should not grow to fill the available space but should be sized according to sizeHint(). .PP @@ -239,7 +239,7 @@ See also addLayout(). .SH "void QGridLayout::addMultiCellWidget ( TQWidget * w, int fromRow, int toRow, int fromCol, int toCol, int alignment = 0 )" Adds the widget \fIw\fR to the cell grid, spanning multiple rows/columns. The cell will span from \fIfromRow\fR, \fIfromCol\fR to \fItoRow\fR, \fItoCol\fR. .PP -Alignment is specified by \fIalignment\fR, which is a bitwise OR of Qt::AlignmentFlags values. The default alignment is 0, which means that the widget fills the entire cell. +Alignment is specified by \fIalignment\fR, which is a bitwise OR of TQt::AlignmentFlags values. The default alignment is 0, which means that the widget fills the entire cell. .PP A non-zero alignment indicates that the widget should not grow to fill the available space but should be sized according to sizeHint(). .PP @@ -256,7 +256,7 @@ Use setRowSpacing() instead. .SH "void QGridLayout::addWidget ( TQWidget * w, int row, int col, int alignment = 0 )" Adds the widget \fIw\fR to the cell grid at \fIrow\fR, \fIcol\fR. The top-left position is (0, 0) by default. .PP -Alignment is specified by \fIalignment\fR, which is a bitwise OR of Qt::AlignmentFlags values. The default alignment is 0, which means that the widget fills the entire cell. +Alignment is specified by \fIalignment\fR, which is a bitwise OR of TQt::AlignmentFlags values. The default alignment is 0, which means that the widget fills the entire cell. .TP You should not call this if you have enabled the auto-add facility of the layout. .IP |