diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-27 19:25:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-27 19:25:43 +0900 |
commit | fb401a891f1b426e9419c0cb16403df407138611 (patch) | |
tree | 045b51949b3140039e37d898d8b0513016a86bea /doc/html/drawdemo-example.html | |
parent | a9d178f1000475ba1727ffe123a2c54585488c01 (diff) | |
download | tqt3-fb401a891f1b426e9419c0cb16403df407138611.tar.gz tqt3-fb401a891f1b426e9419c0cb16403df407138611.zip |
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/drawdemo-example.html b/doc/html/drawdemo-example.html index 9019f9efa..4cf02e215 100644 --- a/doc/html/drawdemo-example.html +++ b/doc/html/drawdemo-example.html @@ -202,7 +202,7 @@ private: // Create a button group to contain all buttons bgroup = new <a href="ntqbuttongroup.html">TQButtonGroup</a>( this ); <a name="x1088"></a> bgroup-><a href="ntqwidget.html#resize">resize</a>( 200, 200 ); -<a name="x1062"></a> <a href="ntqobject.html#connect">connect</a>( bgroup, SIGNAL(<a href="ntqbuttongroup.html#clicked">clicked</a>(int)), SLOT(updateIt(int)) ); +<a name="x1062"></a> <a href="ntqobject.html#connect">connect</a>( bgroup, TQ_SIGNAL(<a href="ntqbuttongroup.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="ntqpushbutton.html">TQPushButton</a>( "Print...", bgroup ); <a name="x1081"></a> print-><a href="ntqwidget.html#resize">resize</a>( 80, 30 ); <a name="x1093"></a><a name="x1080"></a> print-><a href="ntqwidget.html#move">move</a>( maxwidth/2 - print-><a href="ntqwidget.html#width">width</a>()/2, maxindex*30+20 ); - <a href="ntqobject.html#connect">connect</a>( print, SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), SLOT(printIt()) ); + <a href="ntqobject.html#connect">connect</a>( print, TQ_SIGNAL(<a href="ntqbutton.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="ntqwidget.html#resize">resize</a>( maxwidth, print-><a href="ntqwidget.html#y">y</a>()+print-><a href="ntqwidget.html#height">height</a>()+10 ); |