summaryrefslogtreecommitdiffstats
path: root/doc/html/iconview-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-15 13:05:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-22 10:05:58 +0900
commit397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch)
tree0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/iconview-example.html
parent755d46927cc6a5719e695aeb8133be6897de62d8 (diff)
downloadtqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.tar.gz
tqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.zip
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/iconview-example.html')
-rw-r--r--doc/html/iconview-example.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/iconview-example.html b/doc/html/iconview-example.html
index c81d36f0b..2208c85b4 100644
--- a/doc/html/iconview-example.html
+++ b/doc/html/iconview-example.html
@@ -47,7 +47,7 @@ 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="tqapplication-h.html">tqapplication.h</a>&gt;
#include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;
#include &lt;<a href="tqpixmap-h.html">tqpixmap.h</a>&gt;
#include &lt;<a href="tqiconset-h.html">tqiconset.h</a>&gt;
@@ -66,18 +66,18 @@ public:
public slots:
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:" );
+ <a href="tqapplication.html#qDebug">tqDebug</a>( "Dropped Mimesource %p into the view %p", mime, view );
+ <a href="tqapplication.html#qDebug">tqDebug</a>( " Formats:" );
int i = 0;
<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 );
+ <a href="tqapplication.html#qDebug">tqDebug</a>( " %s", str );
while ( str ) {
- <a href="ntqapplication.html#qDebug">tqDebug</a>( " %s", str );
+ <a href="tqapplication.html#qDebug">tqDebug</a>( " %s", str );
str = mime-&gt;<a href="tqdropevent.html#format">format</a>( ++i );
}
};
void moved() {
- <a href="ntqapplication.html#qDebug">tqDebug</a>( "All selected items were moved to another widget" );
+ <a href="tqapplication.html#qDebug">tqDebug</a>( "All selected items were moved to another widget" );
}
protected:
@@ -87,7 +87,7 @@ protected:
int main( int argc, char **argv )
{
- <a href="ntqapplication.html">TQApplication</a> a( argc, argv );
+ <a href="tqapplication.html">TQApplication</a> a( argc, argv );
<a href="tqiconview.html">TQIconView</a> tqiconview;
<a name="x1457"></a> tqiconview.<a href="tqiconview.html#setSelectionMode">setSelectionMode</a>( TQIconView::Extended );
@@ -104,11 +104,11 @@ int main( int argc, char **argv )
&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 );
+ a.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( &amp;tqiconview );
<a name="x1462"></a> tqiconview.<a href="tqwidget.html#show">show</a>();
<a name="x1461"></a><a name="x1458"></a> tqiconview.<a href="tqwidget.html#resize">resize</a>( tqiconview.<a href="tqwidget.html#sizeHint">sizeHint</a>() );
- return a.<a href="ntqapplication.html#exec">exec</a>();
+ return a.<a href="tqapplication.html#exec">exec</a>();
}
#include "main.moc"