diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
commit | 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch) | |
tree | be5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/html/customlayout-example.html | |
parent | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff) | |
download | tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.tar.gz tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.zip |
Rename text class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/customlayout-example.html')
-rw-r--r-- | doc/html/customlayout-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/customlayout-example.html b/doc/html/customlayout-example.html index 1e87be29c..61a72baa6 100644 --- a/doc/html/customlayout-example.html +++ b/doc/html/customlayout-example.html @@ -756,7 +756,7 @@ CardLayout::~CardLayout() #include "card.h" #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qlabel-h.html">ntqlabel.h</a>> +#include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="tqcolor-h.html">tqcolor.h</a>> #include <<a href="qgroupbox-h.html">ntqgroupbox.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> @@ -824,10 +824,10 @@ int main( int argc, char **argv ) gm-><a href="qboxlayout.html#addWidget">addWidget</a>( wid ); - <a href="ntqlabel.html">TQLabel</a>* s = new <a href="ntqlabel.html">TQLabel</a>( f ); - s-><a href="ntqlabel.html#setText">setText</a>( "outermost box" ); + <a href="tqlabel.html">TQLabel</a>* s = new <a href="tqlabel.html">TQLabel</a>( f ); + s-><a href="tqlabel.html#setText">setText</a>( "outermost box" ); s-><a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); - s-><a href="ntqlabel.html#setAlignment">setAlignment</a>( TQt::AlignVCenter | TQt::AlignHCenter ); + s-><a href="tqlabel.html#setAlignment">setAlignment</a>( TQt::AlignVCenter | TQt::AlignHCenter ); gm-><a href="qboxlayout.html#addWidget">addWidget</a>( s ); a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( f ); f-><a href="tqwidget.html#setCaption">setCaption</a>("TQt Example - Custom Layout"); |