diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-02 21:37:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-06 11:24:55 +0900 |
commit | 7552c6d73043b1040139033f6864db48ae5446cf (patch) | |
tree | f90d24d072dd3ee6a3f909bf7778abc7669f03ef /doc/html/customlayout.html | |
parent | c113da2069b66130f67a0f27c699e1cec83588a5 (diff) | |
download | tqt3-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.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() ); } |