summaryrefslogtreecommitdiffstats
path: root/doc/html/customstyles.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/customstyles.html')
-rw-r--r--doc/html/customstyles.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/customstyles.html b/doc/html/customstyles.html
index da5f4d49..9bca441c 100644
--- a/doc/html/customstyles.html
+++ b/doc/html/customstyles.html
@@ -54,9 +54,9 @@ applications.
<a name="1-1"></a><p> The first step is to pick one of the base styles provided with TQt to
build your custom style from. The choice will depend on what look and
feel you are trying to achieve. We recommend that you choose from the
-<a href="ntqwindowsstyle.html">TQWindowsStyle</a> derived classes or the <a href="ntqmotifstyle.html">TQMotifStyle</a> derived classes.
+<a href="tqwindowsstyle.html">TQWindowsStyle</a> derived classes or the <a href="tqmotifstyle.html">TQMotifStyle</a> derived classes.
These are the two base look and feel classes in the TQt style engine.
-Inheriting directly from <a href="ntqcommonstyle.html">TQCommonStyle</a> is also an option if you want to
+Inheriting directly from <a href="tqcommonstyle.html">TQCommonStyle</a> is also an option if you want to
start almost from scratch when implementing your style. In this simple
example we will inherit from TQWindowsStyle.
<p> <h3> 2. Re-implement the necessary functions in your derived class.
@@ -71,9 +71,9 @@ PrimitiveElements that are drawn by the drawPrimitive() function,
so we need to re-implement that function. We need the following class
declaration:
<p> <pre>
-#include &lt;<a href="qwindowsstyle-h.html">ntqwindowsstyle.h</a>&gt;
+#include &lt;<a href="tqwindowsstyle-h.html">tqwindowsstyle.h</a>&gt;
-class CustomStyle : public <a href="ntqwindowsstyle.html">TQWindowsStyle</a> {
+class CustomStyle : public <a href="tqwindowsstyle.html">TQWindowsStyle</a> {
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public:
CustomStyle();