diff options
Diffstat (limited to 'doc/html/iconview-example.html')
-rw-r--r-- | doc/html/iconview-example.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/iconview-example.html b/doc/html/iconview-example.html index 7bb2e3bea..47caf4ab5 100644 --- a/doc/html/iconview-example.html +++ b/doc/html/iconview-example.html @@ -49,11 +49,11 @@ view modes, rubberband selection, etc. #include <<a href="tqiconview-h.html">tqiconview.h</a>> #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qdragobject-h.html">ntqdragobject.h</a>> +#include <<a href="tqdragobject-h.html">tqdragobject.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> #include <<a href="tqiconset-h.html">tqiconset.h</a>> -#include <<a href="qmime-h.html">ntqmime.h</a>> +#include <<a href="tqmime-h.html">tqmime.h</a>> #include <stdio.h> 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-><a href="qdropevent.html#format">format</a>( i ); +<a name="x1454"></a> const char *str = mime-><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-><a href="qdropevent.html#format">format</a>( ++i ); + str = mime-><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( &tqiconview ); -<a name="x1460"></a><a name="x1455"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &tqiconview, TQ_SIGNAL( <a href="tqiconview.html#dropped">dropped</a>( <a href="qdropevent.html">TQDropEvent</a> *, const <a href="tqvaluelist.html">TQValueList</a><TQIconDragItem> & ) ), - &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>( &tqiconview, TQ_SIGNAL( <a href="tqiconview.html#dropped">dropped</a>( <a href="tqdropevent.html">TQDropEvent</a> *, const <a href="tqvaluelist.html">TQValueList</a><TQIconDragItem> & ) ), + &listen_dnd, TQ_SLOT( dropped( <a href="tqdropevent.html">TQDropEvent</a> * ) ) ); <a name="x1456"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &tqiconview, TQ_SIGNAL( <a href="tqiconview.html#moved">moved</a>() ), &listen_dnd, TQ_SLOT( moved() ) ); a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &tqiconview ); |