summaryrefslogtreecommitdiffstats
path: root/doc/html/simple_dd-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
commit42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch)
tree0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/html/simple_dd-example.html
parentfef846914f8db6dc117e206ef913d519bf6bb33e (diff)
downloadtqt-42957a3f.tar.gz
tqt-42957a3f.zip
Rename more widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 );
}