summaryrefslogtreecommitdiffstats
path: root/examples/helpsystem
diff options
context:
space:
mode:
Diffstat (limited to 'examples/helpsystem')
-rw-r--r--examples/helpsystem/main.cpp2
-rw-r--r--examples/helpsystem/mainwindow.cpp22
-rw-r--r--examples/helpsystem/mainwindow.h2
-rw-r--r--examples/helpsystem/tooltip.cpp4
-rw-r--r--examples/helpsystem/tooltip.h2
-rw-r--r--examples/helpsystem/whatsthis.cpp12
-rw-r--r--examples/helpsystem/whatsthis.h2
7 files changed, 23 insertions, 23 deletions
diff --git a/examples/helpsystem/main.cpp b/examples/helpsystem/main.cpp
index 43c2b73c5..aa99b8d22 100644
--- a/examples/helpsystem/main.cpp
+++ b/examples/helpsystem/main.cpp
@@ -7,7 +7,7 @@
**
*****************************************************************************/
-#include <qapplication.h>
+#include <ntqapplication.h>
#include "mainwindow.h"
diff --git a/examples/helpsystem/mainwindow.cpp b/examples/helpsystem/mainwindow.cpp
index e7e4ef9a9..cb64166b4 100644
--- a/examples/helpsystem/mainwindow.cpp
+++ b/examples/helpsystem/mainwindow.cpp
@@ -7,16 +7,16 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qassistantclient.h>
-#include <qfiledialog.h>
-#include <qmenubar.h>
-#include <qpopupmenu.h>
-#include <qstatusbar.h>
-#include <qtable.h>
-#include <qtoolbar.h>
-#include <qtoolbutton.h>
-#include <qtooltip.h>
+#include <ntqapplication.h>
+#include <ntqassistantclient.h>
+#include <ntqfiledialog.h>
+#include <ntqmenubar.h>
+#include <ntqpopupmenu.h>
+#include <ntqstatusbar.h>
+#include <ntqtable.h>
+#include <ntqtoolbar.h>
+#include <ntqtoolbutton.h>
+#include <ntqtooltip.h>
#include "mainwindow.h"
#include "tooltip.h"
@@ -114,5 +114,5 @@ MainWindow::~MainWindow()
void MainWindow::assistantSlot()
{
TQString docsPath = TQDir("../../doc").absPath();
- assistant->showPage( TQString("%1/html/qassistantclient.html").arg(docsPath) );
+ assistant->showPage( TQString("%1/html/ntqassistantclient.html").arg(docsPath) );
}
diff --git a/examples/helpsystem/mainwindow.h b/examples/helpsystem/mainwindow.h
index 32c7239c8..00f4da5a9 100644
--- a/examples/helpsystem/mainwindow.h
+++ b/examples/helpsystem/mainwindow.h
@@ -7,7 +7,7 @@
**
*****************************************************************************/
-#include <qmainwindow.h>
+#include <ntqmainwindow.h>
class HeaderToolTip;
class TableToolTip;
diff --git a/examples/helpsystem/tooltip.cpp b/examples/helpsystem/tooltip.cpp
index 407afa84a..eba546159 100644
--- a/examples/helpsystem/tooltip.cpp
+++ b/examples/helpsystem/tooltip.cpp
@@ -7,8 +7,8 @@
**
*****************************************************************************/
-#include <qtooltip.h>
-#include <qtable.h>
+#include <ntqtooltip.h>
+#include <ntqtable.h>
#include "tooltip.h"
diff --git a/examples/helpsystem/tooltip.h b/examples/helpsystem/tooltip.h
index 69c3bb74f..336a06fc2 100644
--- a/examples/helpsystem/tooltip.h
+++ b/examples/helpsystem/tooltip.h
@@ -10,7 +10,7 @@
#ifndef TOOLTIP_H
#define TOOLTIP_H
-#include <qtooltip.h>
+#include <ntqtooltip.h>
class TQTable;
diff --git a/examples/helpsystem/whatsthis.cpp b/examples/helpsystem/whatsthis.cpp
index b8511cbe9..020c59199 100644
--- a/examples/helpsystem/whatsthis.cpp
+++ b/examples/helpsystem/whatsthis.cpp
@@ -7,10 +7,10 @@
**
*****************************************************************************/
-#include <qapplication.h>
-#include <qdir.h>
-#include <qheader.h>
-#include <qtable.h>
+#include <ntqapplication.h>
+#include <ntqdir.h>
+#include <ntqheader.h>
+#include <ntqtable.h>
#include "whatsthis.h"
@@ -53,7 +53,7 @@ TQString HeaderWhatsThis::text( const TQPoint &p )
if( section == -1 )
return "This is empty space.";
TQString docsPath = TQDir("../../doc").absPath();
- return TQString("This is section number %1 in the %2 <a href=%2/html/qheader.html>header</a>.").
+ return TQString("This is section number %1 in the %2 <a href=%2/html/ntqheader.html>header</a>.").
arg(section + 1).
arg(orient).
arg(docsPath);
@@ -91,7 +91,7 @@ TQString TableWhatsThis::text( const TQPoint &p )
arg(docsPath);
} else if ( TQCheckTableItem::RTTI == i->rtti() ) {
return TQString("This is a <a href=%1/html/qchecktableitem.html>TQCheckTableItem</a>."
- "<br>It provide <a href=%1/html/qcheckbox.html>checkboxes</a> in tables.").
+ "<br>It provide <a href=%1/html/ntqcheckbox.html>checkboxes</a> in tables.").
arg(docsPath).arg(docsPath);
}
diff --git a/examples/helpsystem/whatsthis.h b/examples/helpsystem/whatsthis.h
index d15aad421..5280567d4 100644
--- a/examples/helpsystem/whatsthis.h
+++ b/examples/helpsystem/whatsthis.h
@@ -10,7 +10,7 @@
#ifndef WHATSTHIS_H
#define WHATSTHIS_H
-#include <qwhatsthis.h>
+#include <ntqwhatsthis.h>
class TQHeader;
class TQTable;