diff options
author | Michele Calgaro <[email protected]> | 2023-12-27 19:25:43 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-27 19:25:43 +0900 |
commit | fb401a891f1b426e9419c0cb16403df407138611 (patch) | |
tree | 045b51949b3140039e37d898d8b0513016a86bea /doc/html/qaxserver-example-simple.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 <[email protected]>
Diffstat (limited to 'doc/html/qaxserver-example-simple.html')
-rw-r--r-- | doc/html/qaxserver-example-simple.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/qaxserver-example-simple.html b/doc/html/qaxserver-example-simple.html index 503eb938d..57e7c1d7a 100644 --- a/doc/html/qaxserver-example-simple.html +++ b/doc/html/qaxserver-example-simple.html @@ -59,8 +59,8 @@ and <a href="qaxbindable.html#propertyChanged">TQAxBindable::propertyChanged</a> LCD = new <a href="ntqlcdnumber.html">TQLCDNumber</a>( 3, this ); edit = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); - <a name="x2528"></a> connect( slider, SIGNAL( <a href="ntqslider.html#valueChanged">valueChanged</a>( int ) ), this, SLOT( setValue(int) ) ); - <a name="x2523"></a> connect( edit, SIGNAL(<a href="ntqlineedit.html#textChanged">textChanged</a>(const <a href="ntqstring.html">TQString</a>&)), this, SLOT(setText(const <a href="ntqstring.html">TQString</a>&)) ); + <a name="x2528"></a> connect( slider, TQ_SIGNAL( <a href="ntqslider.html#valueChanged">valueChanged</a>( int ) ), this, TQ_SLOT( setValue(int) ) ); + <a name="x2523"></a> connect( edit, TQ_SIGNAL(<a href="ntqlineedit.html#textChanged">textChanged</a>(const <a href="ntqstring.html">TQString</a>&)), this, TQ_SLOT(setText(const <a href="ntqstring.html">TQString</a>&)) ); vbox-><a href="qboxlayout.html#addWidget">addWidget</a>( slider ); vbox-><a href="qboxlayout.html#addWidget">addWidget</a>( LCD ); |