From 0582c90a9ed4b965629267713f51c0da7c38b39d Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 4 Sep 2024 11:53:23 +0900 Subject: Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h) Signed-off-by: Michele Calgaro --- doc/html/trivial-nsplugin-example.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/html/trivial-nsplugin-example.html') 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.


Implementation:

// TQt stuff
-#include "ntqnp.h"
+#include "tqnp.h"
 #include <tqpainter.h>
-#include <ntqmessagebox.h>
+#include <tqmessagebox.h>
 
-class Trivial : public TQNPWidget {
+class Trivial : public TQNPWidget {
     TQ_OBJECT
 public:
     void mouseReleaseEvent(TQMouseEvent* event)
     {
-        TQMessageBox::aboutTQt(this);
+        TQMessageBox::aboutTQt(this);
     }
 
     void paintEvent(TQPaintEvent* event)
@@ -67,10 +67,10 @@ public:
     }
 };
 
-class TrivialInstance : public TQNPInstance {
+class TrivialInstance : public TQNPInstance {
     TQ_OBJECT
 public:
-    TQNPWidget* newWindow()
+    TQNPWidget* newWindow()
     {
         return new Trivial;
     }
@@ -81,9 +81,9 @@ public:
     }
 };
 
-class TrivialPlugin : public TQNPlugin {
+class TrivialPlugin : public TQNPlugin {
 public:
-    TQNPInstance* newInstance()
+    TQNPInstance* newInstance()
     {
         return new TrivialInstance;
     }
-- 
cgit v1.2.3