summaryrefslogtreecommitdiffstats
path: root/doc/html/customlayout.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-02 21:37:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-06 11:24:55 +0900
commit7552c6d73043b1040139033f6864db48ae5446cf (patch)
treef90d24d072dd3ee6a3f909bf7778abc7669f03ef /doc/html/customlayout.html
parentc113da2069b66130f67a0f27c699e1cec83588a5 (diff)
downloadtqt3-7552c6d73043b1040139033f6864db48ae5446cf.tar.gz
tqt3-7552c6d73043b1040139033f6864db48ae5446cf.zip
Rename main window nt* related files to equivalent tq*. The file
"ntqsession.h" was totally unnecessary and has been removed. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/customlayout.html')
-rw-r--r--doc/html/customlayout.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/customlayout.html b/doc/html/customlayout.html
index da82fa892..10f657af5 100644
--- a/doc/html/customlayout.html
+++ b/doc/html/customlayout.html
@@ -72,8 +72,8 @@ public:
~CardLayout();
void addItem(TQLayoutItem *item);
- <a href="ntqsize.html">TQSize</a> sizeHint() const;
- <a href="ntqsize.html">TQSize</a> minimumSize() const;
+ <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);
@@ -191,7 +191,7 @@ spacing(), but not margin().
<p> <pre>
TQSize CardLayout::sizeHint() const
{
- <a href="ntqsize.html">TQSize</a> s( 0, 0 );
+ <a href="tqsize.html">TQSize</a> s( 0, 0 );
int n = list.count();
if ( n &gt; 0 )
s = TQSize( 100, 70 ); // start with a nice default size
@@ -199,20 +199,20 @@ TQSize CardLayout::sizeHint() const
<a href="qlayoutitem.html">TQLayoutItem</a> *item;
while ( (item = it.<a href="tqptrlistiterator.html#current">current</a>()) != 0 ) {
++it;
- s = s.<a href="ntqsize.html#expandedTo">expandedTo</a>( item-&gt;<a href="qlayoutitem.html#minimumSize">minimumSize</a>() );
+ s = s.<a href="tqsize.html#expandedTo">expandedTo</a>( item-&gt;<a href="qlayoutitem.html#minimumSize">minimumSize</a>() );
}
return s + n * TQSize( spacing(), spacing() );
}
TQSize CardLayout::minimumSize() const
{
- <a href="ntqsize.html">TQSize</a> s( 0, 0 );
+ <a href="tqsize.html">TQSize</a> s( 0, 0 );
int n = list.count();
<a href="tqptrlistiterator.html">TQPtrListIterator</a>&lt;TQLayoutItem&gt; it( list );
<a href="qlayoutitem.html">TQLayoutItem</a> *item;
while ( (item = it.<a href="tqptrlistiterator.html#current">current</a>()) != 0 ) {
++it;
- s = s.<a href="ntqsize.html#expandedTo">expandedTo</a>( item-&gt;<a href="qlayoutitem.html#minimumSize">minimumSize</a>() );
+ s = s.<a href="tqsize.html#expandedTo">expandedTo</a>( item-&gt;<a href="qlayoutitem.html#minimumSize">minimumSize</a>() );
}
return s + n * TQSize( spacing(), spacing() );
}