summaryrefslogtreecommitdiffstats
path: root/doc/html/customlayout.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-20 20:15:52 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-21 23:04:19 +0900
commit1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch)
tree5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/html/customlayout.html
parent14c414378d96f7463b989384f4a0e5dd76632b6d (diff)
downloadtqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.tar.gz
tqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.zip
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/customlayout.html')
-rw-r--r--doc/html/customlayout.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/customlayout.html b/doc/html/customlayout.html
index 10f657af5..57151449c 100644
--- a/doc/html/customlayout.html
+++ b/doc/html/customlayout.html
@@ -75,7 +75,7 @@ public:
<a href="tqsize.html">TQSize</a> sizeHint() const;
<a href="tqsize.html">TQSize</a> minimumSize() const;
<a href="qlayoutiterator.html">TQLayoutIterator</a> iterator();
- void setGeometry(const <a href="ntqrect.html">TQRect</a> &amp;rect);
+ void setGeometry(const <a href="tqrect.html">TQRect</a> &amp;rect);
private:
<a href="tqptrlist.html">TQPtrList</a>&lt;TQLayoutItem&gt; list;
@@ -160,7 +160,7 @@ CardLayout::~CardLayout()
supplied as an argument does not include margin(). If relevant, use
spacing() as the distance between items.
<p> <pre>
-void CardLayout::setGeometry( const <a href="ntqrect.html">TQRect</a> &amp;rect )
+void CardLayout::setGeometry( const <a href="tqrect.html">TQRect</a> &amp;rect )
{
TQLayout::<a href="ntqlayout.html#setGeometry">setGeometry</a>( rect );
@@ -172,12 +172,12 @@ void CardLayout::setGeometry( const <a href="ntqrect.html">TQRect</a> &amp;rect
int i = 0;
- int w = rect.<a href="ntqrect.html#width">width</a>() - ( list.count() - 1 ) * spacing();
- int h = rect.<a href="ntqrect.html#height">height</a>() - ( list.count() - 1 ) * spacing();
+ int w = rect.<a href="tqrect.html#width">width</a>() - ( list.count() - 1 ) * spacing();
+ int h = rect.<a href="tqrect.html#height">height</a>() - ( list.count() - 1 ) * spacing();
while ( (item = it.<a href="tqptrlistiterator.html#current">current</a>()) != 0 ) {
++it;
- <a href="ntqrect.html">TQRect</a> geom( rect.<a href="ntqrect.html#x">x</a>() + i * spacing(), rect.<a href="ntqrect.html#y">y</a>() + i * spacing(),
+ <a href="tqrect.html">TQRect</a> geom( rect.<a href="tqrect.html#x">x</a>() + i * spacing(), rect.<a href="tqrect.html#y">y</a>() + i * spacing(),
w, h );
item-&gt;<a href="qlayoutitem.html#setGeometry">setGeometry</a>( geom );
++i;