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.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/iconview-example.html b/doc/html/iconview-example.html
index 3f7a20ba3..f3bb2c1f3 100644
--- a/doc/html/iconview-example.html
+++ b/doc/html/iconview-example.html
@@ -61,7 +61,7 @@ class ListenDND : public <a href="tqobject.html">TQObject</a>
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public:
- ListenDND( <a href="ntqwidget.html">TQWidget</a> *w )
+ ListenDND( <a href="tqwidget.html">TQWidget</a> *w )
: view( w )
{}
@@ -82,7 +82,7 @@ public slots:
}
protected:
- <a href="ntqwidget.html">TQWidget</a> *view;
+ <a href="tqwidget.html">TQWidget</a> *view;
};
@@ -98,7 +98,7 @@ int main( int argc, char **argv )
<a name="x1459"></a> item-&gt;<a href="qiconviewitem.html#setRenameEnabled">setRenameEnabled</a>( TRUE );
}
- qiconview.<a href="ntqwidget.html#setCaption">setCaption</a>( "TQt Example - Iconview" );
+ qiconview.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Iconview" );
ListenDND listen_dnd( &amp;qiconview );
<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; ) ),
@@ -106,8 +106,8 @@ int main( int argc, char **argv )
<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>();
-<a name="x1461"></a><a name="x1458"></a> qiconview.<a href="ntqwidget.html#resize">resize</a>( qiconview.<a href="ntqwidget.html#sizeHint">sizeHint</a>() );
+<a name="x1462"></a> qiconview.<a href="tqwidget.html#show">show</a>();
+<a name="x1461"></a><a name="x1458"></a> qiconview.<a href="tqwidget.html#resize">resize</a>( qiconview.<a href="tqwidget.html#sizeHint">sizeHint</a>() );
return a.<a href="ntqapplication.html#exec">exec</a>();
}