summaryrefslogtreecommitdiffstats
path: root/doc/html/rot-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-08 12:56:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-08 12:56:43 +0900
commit0cf411b09cf5d8970b873a338a69eae98d5ce5d8 (patch)
tree107cf55759cc3138bb1e0035b479bcd92127403a /doc/html/rot-example.html
parente6077c30d14e9d662e8843c554db86c0d366d0b6 (diff)
downloadtqt3-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.html8
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>( "&amp;Quit", this );
<a name="x1379"></a> quit-&gt;<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-&gt;<a href="tqobject.html#blockSignals">blockSignals</a>( TRUE );
-<a name="x1374"></a><a name="x1373"></a> left-&gt;<a href="ntqtextedit.html#setText">setText</a>( rot13( right-&gt;<a href="ntqtextedit.html#text">text</a>() ) );
+<a name="x1374"></a><a name="x1373"></a> left-&gt;<a href="tqtextedit.html#setText">setText</a>( rot13( right-&gt;<a href="tqtextedit.html#text">text</a>() ) );
left-&gt;<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-&gt;<a href="tqobject.html#blockSignals">blockSignals</a>( TRUE );
- right-&gt;<a href="ntqtextedit.html#setText">setText</a>( rot13( left-&gt;<a href="ntqtextedit.html#text">text</a>() ) );
+ right-&gt;<a href="tqtextedit.html#setText">setText</a>( rot13( left-&gt;<a href="tqtextedit.html#text">text</a>() ) );
right-&gt;<a href="tqobject.html#blockSignals">blockSignals</a>( FALSE );
}