summaryrefslogtreecommitdiffstats
path: root/doc/html/rot-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:07:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/rot-example.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz
tqt-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip
Rename ntqwidget* related files to equivalent tqwidget*
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 a1b9424d6..be9fd0eaa 100644
--- a/doc/html/rot-example.html
+++ b/doc/html/rot-example.html
@@ -55,11 +55,11 @@ the rot13 algorithm.
#ifndef ROT13_H
#define ROT13_H
-#include &lt;<a href="qwidget-h.html">ntqwidget.h</a>&gt;
+#include &lt;<a href="tqwidget-h.html">tqwidget.h</a>&gt;
class TQMultiLineEdit;
-class Rot13: public <a href="ntqwidget.html">TQWidget</a> {
+class Rot13: public <a href="tqwidget.html">TQWidget</a> {
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public:
Rot13();
@@ -104,7 +104,7 @@ private:
<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 name="x1379"></a> quit-&gt;<a href="tqwidget.html#setFocusPolicy">setFocusPolicy</a>( NoFocus );
<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 );
@@ -112,7 +112,7 @@ private:
l-&gt;<a href="qgridlayout.html#addWidget">addWidget</a>( right, 0, 1 );
l-&gt;<a href="qgridlayout.html#addWidget">addWidget</a>( quit, 1, 1, AlignRight );
-<a name="x1378"></a> left-&gt;<a href="ntqwidget.html#setFocus">setFocus</a>();
+<a name="x1378"></a> left-&gt;<a href="tqwidget.html#setFocus">setFocus</a>();
}
@@ -152,10 +152,10 @@ int main( int argc, char ** argv )
{
<a href="ntqapplication.html">TQApplication</a> a( argc, argv );
Rot13 r;
- r.<a href="ntqwidget.html#resize">resize</a>( 400, 400 );
+ r.<a href="tqwidget.html#resize">resize</a>( 400, 400 );
a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;r );
- r.<a href="ntqwidget.html#setCaption">setCaption</a>("TQt Example - ROT13");
- r.<a href="ntqwidget.html#show">show</a>();
+ r.<a href="tqwidget.html#setCaption">setCaption</a>("TQt Example - ROT13");
+ r.<a href="tqwidget.html#show">show</a>();
return a.<a href="ntqapplication.html#exec">exec</a>();
}
</pre>