summaryrefslogtreecommitdiffstats
path: root/doc/html/customlayout.html
diff options
context:
space:
mode:
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 da82fa89..10f657af 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() );
}