diff options
Diffstat (limited to 'doc/html/customlayout.html')
-rw-r--r-- | doc/html/customlayout.html | 12 |
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> &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 > 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-><a href="qlayoutitem.html#minimumSize">minimumSize</a>() ); + s = s.<a href="tqsize.html#expandedTo">expandedTo</a>( item-><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><TQLayoutItem> 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-><a href="qlayoutitem.html#minimumSize">minimumSize</a>() ); + s = s.<a href="tqsize.html#expandedTo">expandedTo</a>( item-><a href="qlayoutitem.html#minimumSize">minimumSize</a>() ); } return s + n * TQSize( spacing(), spacing() ); } |