summaryrefslogtreecommitdiffstats
path: root/doc/html/iconview-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:07:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/iconview-example.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt-8ac0e970.tar.gz
tqt-8ac0e970.zip
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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>();
}