diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-15 13:05:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-22 10:05:58 +0900 |
commit | 397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch) | |
tree | 0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/iconview-example.html | |
parent | 755d46927cc6a5719e695aeb8133be6897de62d8 (diff) | |
download | tqt3-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.html | 18 |
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 <<a href="tqiconview-h.html">tqiconview.h</a>> -#include <<a href="qapplication-h.html">ntqapplication.h</a>> +#include <<a href="tqapplication-h.html">tqapplication.h</a>> #include <<a href="tqdragobject-h.html">tqdragobject.h</a>> #include <<a href="tqpixmap-h.html">tqpixmap.h</a>> #include <<a href="tqiconset-h.html">tqiconset.h</a>> @@ -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-><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-><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 ) &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 ); + a.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( &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" |