summaryrefslogtreecommitdiffstats
path: root/doc/html/iconview-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-23 14:04:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-27 16:08:54 +0900
commit04913ce7a46fd027856e83a96205fdc388742a19 (patch)
treea04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/iconview-example.html
parentc11c0f228b65f7471a26513ef8dbde413e75f8fa (diff)
downloadtqt-04913ce7.tar.gz
tqt-04913ce7.zip
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/iconview-example.html')
-rw-r--r--doc/html/iconview-example.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/iconview-example.html b/doc/html/iconview-example.html
index fe9db0dc3..3f7a20ba3 100644
--- a/doc/html/iconview-example.html
+++ b/doc/html/iconview-example.html
@@ -56,7 +56,7 @@ view modes, rubberband selection, etc.
#include &lt;<a href="qmime-h.html">ntqmime.h</a>&gt;
#include &lt;stdio.h&gt;
-class ListenDND : public <a href="ntqobject.html">TQObject</a>
+class ListenDND : public <a href="tqobject.html">TQObject</a>
{
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
@@ -101,9 +101,9 @@ int main( int argc, char **argv )
qiconview.<a href="ntqwidget.html#setCaption">setCaption</a>( "TQt Example - Iconview" );
ListenDND listen_dnd( &amp;qiconview );
-<a name="x1460"></a><a name="x1455"></a> TQObject::<a href="ntqobject.html#connect">connect</a>( &amp;qiconview, TQ_SIGNAL( <a href="ntqiconview.html#dropped">dropped</a>( <a href="qdropevent.html">TQDropEvent</a> *, const <a href="ntqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) ),
+<a name="x1460"></a><a name="x1455"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &amp;qiconview, TQ_SIGNAL( <a href="ntqiconview.html#dropped">dropped</a>( <a href="qdropevent.html">TQDropEvent</a> *, const <a href="ntqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) ),
&amp;listen_dnd, TQ_SLOT( dropped( <a href="qdropevent.html">TQDropEvent</a> * ) ) );
-<a name="x1456"></a> TQObject::<a href="ntqobject.html#connect">connect</a>( &amp;qiconview, TQ_SIGNAL( <a href="ntqiconview.html#moved">moved</a>() ), &amp;listen_dnd, TQ_SLOT( moved() ) );
+<a name="x1456"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &amp;qiconview, TQ_SIGNAL( <a href="ntqiconview.html#moved">moved</a>() ), &amp;listen_dnd, TQ_SLOT( moved() ) );
a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;qiconview );
<a name="x1462"></a> qiconview.<a href="ntqwidget.html#show">show</a>();