diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-08 12:56:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-08 12:56:43 +0900 |
commit | 0cf411b09cf5d8970b873a338a69eae98d5ce5d8 (patch) | |
tree | 107cf55759cc3138bb1e0035b479bcd92127403a /doc/html/rot-example.html | |
parent | e6077c30d14e9d662e8843c554db86c0d366d0b6 (diff) | |
download | tqt3-0cf411b09cf5d8970b873a338a69eae98d5ce5d8.tar.gz tqt3-0cf411b09cf5d8970b873a338a69eae98d5ce5d8.zip |
Rename text nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/rot-example.html')
-rw-r--r-- | doc/html/rot-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/rot-example.html b/doc/html/rot-example.html index 324352132..8d283eaed 100644 --- a/doc/html/rot-example.html +++ b/doc/html/rot-example.html @@ -100,8 +100,8 @@ private: { left = new <a href="ntqmultilineedit.html">TQMultiLineEdit</a>( this, "left" ); right = new <a href="ntqmultilineedit.html">TQMultiLineEdit</a>( this, "right" ); -<a name="x1375"></a> <a href="tqobject.html#connect">connect</a>( left, TQ_SIGNAL(<a href="ntqtextedit.html#textChanged">textChanged</a>()), this, TQ_SLOT(changeRight()) ); - <a href="tqobject.html#connect">connect</a>( right, TQ_SIGNAL(<a href="ntqtextedit.html#textChanged">textChanged</a>()), this, TQ_SLOT(changeLeft()) ); +<a name="x1375"></a> <a href="tqobject.html#connect">connect</a>( left, TQ_SIGNAL(<a href="tqtextedit.html#textChanged">textChanged</a>()), this, TQ_SLOT(changeRight()) ); + <a href="tqobject.html#connect">connect</a>( right, TQ_SIGNAL(<a href="tqtextedit.html#textChanged">textChanged</a>()), this, TQ_SLOT(changeLeft()) ); <a href="ntqpushbutton.html">TQPushButton</a> * quit = new <a href="ntqpushbutton.html">TQPushButton</a>( "&Quit", this ); <a name="x1379"></a> quit-><a href="tqwidget.html#setFocusPolicy">setFocusPolicy</a>( NoFocus ); @@ -119,7 +119,7 @@ private: void <a name="f433"></a>Rot13::changeLeft() { <a name="x1371"></a> left-><a href="tqobject.html#blockSignals">blockSignals</a>( TRUE ); -<a name="x1374"></a><a name="x1373"></a> left-><a href="ntqtextedit.html#setText">setText</a>( rot13( right-><a href="ntqtextedit.html#text">text</a>() ) ); +<a name="x1374"></a><a name="x1373"></a> left-><a href="tqtextedit.html#setText">setText</a>( rot13( right-><a href="tqtextedit.html#text">text</a>() ) ); left-><a href="tqobject.html#blockSignals">blockSignals</a>( FALSE ); } @@ -127,7 +127,7 @@ void <a name="f433"></a>Rot13::changeLeft() void <a name="f434"></a>Rot13::changeRight() { right-><a href="tqobject.html#blockSignals">blockSignals</a>( TRUE ); - right-><a href="ntqtextedit.html#setText">setText</a>( rot13( left-><a href="ntqtextedit.html#text">text</a>() ) ); + right-><a href="tqtextedit.html#setText">setText</a>( rot13( left-><a href="tqtextedit.html#text">text</a>() ) ); right-><a href="tqobject.html#blockSignals">blockSignals</a>( FALSE ); } |