summaryrefslogtreecommitdiffstats
path: root/doc/html/simple_dd-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/simple_dd-example.html')
-rw-r--r--doc/html/simple_dd-example.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/simple_dd-example.html b/doc/html/simple_dd-example.html
index 4b75e56f1..19305dd83 100644
--- a/doc/html/simple_dd-example.html
+++ b/doc/html/simple_dd-example.html
@@ -51,7 +51,7 @@ functionality.
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="qcursor-h.html">ntqcursor.h</a>&gt;
#include &lt;<a href="qsplitter-h.html">ntqsplitter.h</a>&gt;
-#include &lt;<a href="qlistbox-h.html">ntqlistbox.h</a>&gt;
+#include &lt;<a href="tqlistbox-h.html">tqlistbox.h</a>&gt;
#include &lt;<a href="tqiconview-h.html">tqiconview.h</a>&gt;
#include &lt;<a href="tqpixmap-h.html">tqpixmap.h</a>&gt;
@@ -59,7 +59,7 @@ class TQDragEnterEvent;
class TQDragDropEvent;
-class DDListBox : public <a href="ntqlistbox.html">TQListBox</a>
+class DDListBox : public <a href="tqlistbox.html">TQListBox</a>
{
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public:
@@ -182,7 +182,7 @@ const char* green_icon[]={
// ListBox -- low level drag and drop
<a name="f589"></a>DDListBox::DDListBox( <a href="tqwidget.html">TQWidget</a> * parent, const char * name, WFlags f ) :
- <a href="ntqlistbox.html">TQListBox</a>( parent, name, f )
+ <a href="tqlistbox.html">TQListBox</a>( parent, name, f )
{
<a href="tqwidget.html#setAcceptDrops">setAcceptDrops</a>( TRUE );
dragging = FALSE;
@@ -201,7 +201,7 @@ const char* green_icon[]={
<a href="tqstring.html">TQString</a> text;
<a name="x2828"></a> if ( TQTextDrag::<a href="tqtextdrag.html#decode">decode</a>( evt, text ) )
- <a href="ntqlistbox.html#insertItem">insertItem</a>( text );
+ <a href="tqlistbox.html#insertItem">insertItem</a>( text );
}