summaryrefslogtreecommitdiffstats
path: root/doc/html/rot-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-23 14:04:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-27 16:08:54 +0900
commit04913ce7a46fd027856e83a96205fdc388742a19 (patch)
treea04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/rot-example.html
parentc11c0f228b65f7471a26513ef8dbde413e75f8fa (diff)
downloadtqt3-04913ce7a46fd027856e83a96205fdc388742a19.tar.gz
tqt3-04913ce7a46fd027856e83a96205fdc388742a19.zip
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/rot-example.html')
-rw-r--r--doc/html/rot-example.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/rot-example.html b/doc/html/rot-example.html
index f48686a61..a1b9424d6 100644
--- a/doc/html/rot-example.html
+++ b/doc/html/rot-example.html
@@ -100,12 +100,12 @@ 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="ntqobject.html#connect">connect</a>( left, TQ_SIGNAL(<a href="ntqtextedit.html#textChanged">textChanged</a>()), this, TQ_SLOT(changeRight()) );
- <a href="ntqobject.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="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 href="ntqpushbutton.html">TQPushButton</a> * quit = new <a href="ntqpushbutton.html">TQPushButton</a>( "&amp;Quit", this );
<a name="x1379"></a> quit-&gt;<a href="ntqwidget.html#setFocusPolicy">setFocusPolicy</a>( NoFocus );
- <a href="ntqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
+ <a href="tqobject.html#connect">connect</a>( quit, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
<a href="qgridlayout.html">TQGridLayout</a> * l = new <a href="qgridlayout.html">TQGridLayout</a>( this, 2, 2, 5 );
<a name="x1370"></a> l-&gt;<a href="qgridlayout.html#addWidget">addWidget</a>( left, 0, 0 );
@@ -118,17 +118,17 @@ private:
void <a name="f433"></a>Rot13::changeLeft()
{
-<a name="x1371"></a> left-&gt;<a href="ntqobject.html#blockSignals">blockSignals</a>( TRUE );
+<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>() ) );
- left-&gt;<a href="ntqobject.html#blockSignals">blockSignals</a>( FALSE );
+ left-&gt;<a href="tqobject.html#blockSignals">blockSignals</a>( FALSE );
}
void <a name="f434"></a>Rot13::changeRight()
{
- right-&gt;<a href="ntqobject.html#blockSignals">blockSignals</a>( TRUE );
+ 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="ntqobject.html#blockSignals">blockSignals</a>( FALSE );
+ right-&gt;<a href="tqobject.html#blockSignals">blockSignals</a>( FALSE );
}