diff options
author | Michele Calgaro <[email protected]> | 2024-09-04 11:53:23 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-09-04 13:56:43 +0900 |
commit | 0582c90a9ed4b965629267713f51c0da7c38b39d (patch) | |
tree | cae95e850081d0a7f2be6cef5837f43a28d53d2c /doc/html/trivial-nsplugin-example.html | |
parent | 39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (diff) | |
download | tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.tar.gz tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.zip |
Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/trivial-nsplugin-example.html')
-rw-r--r-- | doc/html/trivial-nsplugin-example.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/trivial-nsplugin-example.html b/doc/html/trivial-nsplugin-example.html index 88904540a..277c79931 100644 --- a/doc/html/trivial-nsplugin-example.html +++ b/doc/html/trivial-nsplugin-example.html @@ -45,16 +45,16 @@ to the Plugins directory of your WWW browser. <p> <hr> Implementation: <p> <pre>// TQt stuff -#include "ntqnp.h" +#include "tqnp.h" #include <<a href="tqpainter-h.html">tqpainter.h</a>> -#include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> +#include <<a href="tqmessagebox-h.html">tqmessagebox.h</a>> -class Trivial : public <a href="qnpwidget.html">TQNPWidget</a> { +class Trivial : public <a href="tqnpwidget.html">TQNPWidget</a> { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: void mouseReleaseEvent(TQMouseEvent* event) { -<a name="x2736"></a> TQMessageBox::<a href="ntqmessagebox.html#aboutTQt">aboutTQt</a>(this); +<a name="x2736"></a> TQMessageBox::<a href="tqmessagebox.html#aboutTQt">aboutTQt</a>(this); } void paintEvent(TQPaintEvent* event) @@ -67,10 +67,10 @@ public: } }; -class TrivialInstance : public <a href="qnpinstance.html">TQNPInstance</a> { +class TrivialInstance : public <a href="tqnpinstance.html">TQNPInstance</a> { TQ_OBJECT public: - <a href="qnpwidget.html">TQNPWidget</a>* newWindow() + <a href="tqnpwidget.html">TQNPWidget</a>* newWindow() { return new Trivial; } @@ -81,9 +81,9 @@ public: } }; -class TrivialPlugin : public <a href="qnplugin.html">TQNPlugin</a> { +class TrivialPlugin : public <a href="tqnplugin.html">TQNPlugin</a> { public: - <a href="qnpinstance.html">TQNPInstance</a>* newInstance() + <a href="tqnpinstance.html">TQNPInstance</a>* newInstance() { return new TrivialInstance; } |