diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-23 14:04:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-27 16:08:54 +0900 |
commit | 04913ce7a46fd027856e83a96205fdc388742a19 (patch) | |
tree | a04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/rot-example.html | |
parent | c11c0f228b65f7471a26513ef8dbde413e75f8fa (diff) | |
download | tqt3-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.html | 14 |
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>( "&Quit", this ); <a name="x1379"></a> quit-><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-><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-><a href="ntqobject.html#blockSignals">blockSignals</a>( TRUE ); +<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>() ) ); - left-><a href="ntqobject.html#blockSignals">blockSignals</a>( FALSE ); + left-><a href="tqobject.html#blockSignals">blockSignals</a>( FALSE ); } void <a name="f434"></a>Rot13::changeRight() { - right-><a href="ntqobject.html#blockSignals">blockSignals</a>( TRUE ); + 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="ntqobject.html#blockSignals">blockSignals</a>( FALSE ); + right-><a href="tqobject.html#blockSignals">blockSignals</a>( FALSE ); } |