diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-12 22:02:11 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-12 22:02:11 +0900 | 
| commit | 42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch) | |
| tree | 0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/html/drawdemo-example.html | |
| parent | fef846914f8db6dc117e206ef913d519bf6bb33e (diff) | |
| download | tqt-42957a3f.tar.gz tqt-42957a3f.zip | |
Rename more widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/drawdemo-example.html')
| -rw-r--r-- | doc/html/drawdemo-example.html | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/doc/html/drawdemo-example.html b/doc/html/drawdemo-example.html index ea3b758c9..38abebf50 100644 --- a/doc/html/drawdemo-example.html +++ b/doc/html/drawdemo-example.html @@ -52,7 +52,7 @@ You can easily add you own drawing functions.  #include <<a href="tqprinter-h.html">tqprinter.h</a>>  #include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>>  #include <<a href="tqradiobutton-h.html">tqradiobutton.h</a>> -#include <<a href="qbuttongroup-h.html">ntqbuttongroup.h</a>> +#include <<a href="tqbuttongroup-h.html">tqbuttongroup.h</a>>  #include <<a href="qapplication-h.html">ntqapplication.h</a>>  #include <math.h> @@ -183,7 +183,7 @@ protected:      void   resizeEvent( <a href="qresizeevent.html">TQResizeEvent</a> * );  private:      <a href="tqprinter.html">TQPrinter</a>     *printer; -    <a href="ntqbuttongroup.html">TQButtonGroup</a> *bgroup; +    <a href="tqbuttongroup.html">TQButtonGroup</a> *bgroup;      <a href="tqpushbutton.html">TQPushButton</a>  *print;      int           drawindex;      int           maxindex; @@ -200,9 +200,9 @@ private:      <a href="tqwidget.html#setBackgroundMode">setBackgroundMode</a>(PaletteBase);      // Create a button group to contain all buttons -    bgroup = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( this ); +    bgroup = new <a href="tqbuttongroup.html">TQButtonGroup</a>( this );  <a name="x1088"></a>    bgroup-><a href="tqwidget.html#resize">resize</a>( 200, 200 ); -<a name="x1062"></a>    <a href="tqobject.html#connect">connect</a>( bgroup, TQ_SIGNAL(<a href="ntqbuttongroup.html#clicked">clicked</a>(int)), TQ_SLOT(updateIt(int)) ); +<a name="x1062"></a>    <a href="tqobject.html#connect">connect</a>( bgroup, TQ_SIGNAL(<a href="tqbuttongroup.html#clicked">clicked</a>(int)), TQ_SLOT(updateIt(int)) );      // Calculate the size for the radio buttons      int maxwidth = 80; @@ -259,7 +259,7 @@ private:      print = new <a href="tqpushbutton.html">TQPushButton</a>( "Print...", bgroup );  <a name="x1081"></a>    print-><a href="tqwidget.html#resize">resize</a>( 80, 30 );  <a name="x1093"></a><a name="x1080"></a>    print-><a href="tqwidget.html#move">move</a>( maxwidth/2 - print-><a href="tqwidget.html#width">width</a>()/2, maxindex*30+20 ); -    <a href="tqobject.html#connect">connect</a>( print, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), TQ_SLOT(printIt()) ); +    <a href="tqobject.html#connect">connect</a>( print, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), TQ_SLOT(printIt()) );      // Resize bgroup to its final size when printersupport is given.  <a name="x1094"></a><a name="x1085"></a>    bgroup-><a href="tqwidget.html#resize">resize</a>( maxwidth, print-><a href="tqwidget.html#y">y</a>()+print-><a href="tqwidget.html#height">height</a>()+10 ); | 
