summaryrefslogtreecommitdiffstats
path: root/doc/html/plugins-howto.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/plugins-howto.html')
-rw-r--r--doc/html/plugins-howto.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/plugins-howto.html b/doc/html/plugins-howto.html
index de997315..42ae7700 100644
--- a/doc/html/plugins-howto.html
+++ b/doc/html/plugins-howto.html
@@ -58,7 +58,7 @@ by default in the standard plugin directory.
<td valign="top"><a href="ntqtextcodecplugin.html">TQTextCodecPlugin</a>
<td valign="top"><tt>pluginsbase/codecs</tt> <sup>*</sup>
<tr bgcolor="#f0f0f0">
-<td valign="top"><a href="ntqwidgetplugin.html">TQWidgetPlugin</a>
+<td valign="top"><a href="tqwidgetplugin.html">TQWidgetPlugin</a>
<td valign="top"><tt>pluginsbase/designer</tt> <sup>*</sup>
</table></center>
<p> But where is the <tt>pluginsbase</tt> directory? When the application is
@@ -94,7 +94,7 @@ to make available as a plugin. The required code is straightforward:
</pre>
<p> (Note that <a href="ntqstylefactory.html">TQStyleFactory</a> is case-insensitive, and the lower case
-version of the key is used; other factories, e.g. <a href="ntqwidgetfactory.html">TQWidgetFactory</a>, are
+version of the key is used; other factories, e.g. <a href="tqwidgetfactory.html">TQWidgetFactory</a>, are
case sensitive.)
<p> The constructor and destructor do not need to do anything, so are left
empty. There are only two virtual functions that must be implemented.
@@ -118,9 +118,9 @@ style explicitly in code. To apply a style, use code like this:
<p> Some plugin classes require additional functions to be implemented.
See the <a href="designer-manual.html">TQt Designer manual's</a>,
'Creating Custom Widgets' section in the 'Creating Custom Widgets'
-chapter, for a complete example of a <a href="ntqwidgetplugin.html">TQWidgetPlugin</a>, which implements
+chapter, for a complete example of a <a href="tqwidgetplugin.html">TQWidgetPlugin</a>, which implements
extra functions to integrate the plugin into <em>TQt Designer</em>. The
-<a href="ntqwidgetfactory.html">TQWidgetFactory</a> class provides additional information on
+<a href="tqwidgetfactory.html">TQWidgetFactory</a> class provides additional information on
TQWidgetPlugins.
<p> See the class documentation for details of the virtual functions that
must be reimplemented for each type of plugin.