summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqlayoutitem.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-23 12:42:20 +0900
committerMichele Calgaro <[email protected]>2023-09-23 12:42:20 +0900
commitb35e0845dc9b3c8b9a5e52a682c769f383933fae (patch)
treee4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqlayoutitem.3qt
parent1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff)
downloadtqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz
tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqlayoutitem.3qt')
-rw-r--r--doc/man/man3/tqlayoutitem.3qt10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqlayoutitem.3qt b/doc/man/man3/tqlayoutitem.3qt
index 26a5d037e..97781a9b9 100644
--- a/doc/man/man3/tqlayoutitem.3qt
+++ b/doc/man/man3/tqlayoutitem.3qt
@@ -52,7 +52,7 @@ Inherited by QLayout, QSpacerItem, and QWidgetItem.
.BI "virtual void \fBinvalidate\fR ()"
.br
.ti -1c
-.BI "virtual QWidget * \fBwidget\fR ()"
+.BI "virtual TQWidget * \fBwidget\fR ()"
.br
.ti -1c
.BI "virtual QLayoutIterator \fBiterator\fR ()"
@@ -79,7 +79,7 @@ Pure virtual functions are provided to return information about the layout, incl
.PP
The layout's geometry can be set and retrieved with setGeometry() and geometry(), and its alignment with setAlignment() and alignment().
.PP
-isEmpty() returns whether the layout is empty. iterator() returns an iterator for the layout's children. If the concrete item is a QWidget, it can be retrieved using widget(). Similarly for layout() and spacerItem().
+isEmpty() returns whether the layout is empty. iterator() returns an iterator for the layout's children. If the concrete item is a TQWidget, it can be retrieved using widget(). Similarly for layout() and spacerItem().
.PP
See also QLayout, Widget Appearance and Style, and Layout Management.
.SH MEMBER FUNCTION DOCUMENTATION
@@ -102,7 +102,7 @@ Returns TRUE if this layout's preferred height depends on its width; otherwise r
.PP
Reimplement this function in layout managers that support height for width.
.PP
-See also heightForWidth() and QWidget::heightForWidth().
+See also heightForWidth() and TQWidget::heightForWidth().
.PP
Examples:
.)l customlayout/border.cpp and customlayout/flow.cpp.
@@ -195,8 +195,8 @@ Examples:
Reimplemented in QSpacerItem, QWidgetItem, QGridLayout, and QBoxLayout.
.SH "QSpacerItem * QLayoutItem::spacerItem ()\fC [virtual]\fR"
If this item is a QSpacerItem, it is returned as a QSpacerItem; otherwise 0 is returned. This function provides type-safe casting.
-.SH "QWidget * QLayoutItem::widget ()\fC [virtual]\fR"
-If this item is a QWidget, it is returned as a QWidget; otherwise 0 is returned. This function provides type-safe casting.
+.SH "TQWidget * QLayoutItem::widget ()\fC [virtual]\fR"
+If this item is a TQWidget, it is returned as a TQWidget; otherwise 0 is returned. This function provides type-safe casting.
.PP
Reimplemented in QWidgetItem.