summaryrefslogtreecommitdiffstats
path: root/doc/html/iconview-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/iconview-example.html')
-rw-r--r--doc/html/iconview-example.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/iconview-example.html b/doc/html/iconview-example.html
index 7bb2e3be..47caf4ab 100644
--- a/doc/html/iconview-example.html
+++ b/doc/html/iconview-example.html
@@ -49,11 +49,11 @@ view modes, rubberband selection, etc.
#include &lt;<a href="tqiconview-h.html">tqiconview.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt;
+#include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="tqiconset-h.html">tqiconset.h</a>&gt;
-#include &lt;<a href="qmime-h.html">ntqmime.h</a>&gt;
+#include &lt;<a href="tqmime-h.html">tqmime.h</a>&gt;
#include &lt;stdio.h&gt;
class ListenDND : public <a href="tqobject.html">TQObject</a>
@@ -66,15 +66,15 @@ public:
{}
public slots:
- void dropped( <a href="qdropevent.html">TQDropEvent</a> *mime ) {
+ void dropped( <a href="tqdropevent.html">TQDropEvent</a> *mime ) {
<a href="ntqapplication.html#qDebug">tqDebug</a>( "Dropped Mimesource %p into the view %p", mime, view );
<a href="ntqapplication.html#qDebug">tqDebug</a>( " Formats:" );
int i = 0;
-<a name="x1454"></a> const char *str = mime-&gt;<a href="qdropevent.html#format">format</a>( i );
+<a name="x1454"></a> const char *str = mime-&gt;<a href="tqdropevent.html#format">format</a>( i );
<a href="ntqapplication.html#qDebug">tqDebug</a>( " %s", str );
while ( str ) {
<a href="ntqapplication.html#qDebug">tqDebug</a>( " %s", str );
- str = mime-&gt;<a href="qdropevent.html#format">format</a>( ++i );
+ str = mime-&gt;<a href="tqdropevent.html#format">format</a>( ++i );
}
};
void moved() {
@@ -101,8 +101,8 @@ int main( int argc, char **argv )
tqiconview.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Iconview" );
ListenDND listen_dnd( &amp;tqiconview );
-<a name="x1460"></a><a name="x1455"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &amp;tqiconview, TQ_SIGNAL( <a href="tqiconview.html#dropped">dropped</a>( <a href="qdropevent.html">TQDropEvent</a> *, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) ),
- &amp;listen_dnd, TQ_SLOT( dropped( <a href="qdropevent.html">TQDropEvent</a> * ) ) );
+<a name="x1460"></a><a name="x1455"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &amp;tqiconview, TQ_SIGNAL( <a href="tqiconview.html#dropped">dropped</a>( <a href="tqdropevent.html">TQDropEvent</a> *, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) ),
+ &amp;listen_dnd, TQ_SLOT( dropped( <a href="tqdropevent.html">TQDropEvent</a> * ) ) );
<a name="x1456"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &amp;tqiconview, TQ_SIGNAL( <a href="tqiconview.html#moved">moved</a>() ), &amp;listen_dnd, TQ_SLOT( moved() ) );
a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;tqiconview );