diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/simple_dd-example.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/simple_dd-example.html')
-rw-r--r-- | doc/html/simple_dd-example.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/simple_dd-example.html b/doc/html/simple_dd-example.html index d3b7f31c7..e7d35acb2 100644 --- a/doc/html/simple_dd-example.html +++ b/doc/html/simple_dd-example.html @@ -77,9 +77,9 @@ private: class DDIconViewItem : public <a href="qiconviewitem.html">TQIconViewItem</a> { public: - DDIconViewItem( <a href="ntqiconview.html">TQIconView</a> *parent, const <a href="ntqstring.html">TQString</a>& text, const <a href="ntqpixmap.html">TQPixmap</a>& icon ) : + DDIconViewItem( <a href="ntqiconview.html">TQIconView</a> *parent, const <a href="tqstring.html">TQString</a>& text, const <a href="ntqpixmap.html">TQPixmap</a>& icon ) : <a href="qiconviewitem.html">TQIconViewItem</a>( parent, text, icon ) {} - DDIconViewItem( <a href="ntqiconview.html">TQIconView</a> *parent, const <a href="ntqstring.html">TQString</a> &text ) : + DDIconViewItem( <a href="ntqiconview.html">TQIconView</a> *parent, const <a href="tqstring.html">TQString</a> &text ) : <a href="qiconviewitem.html">TQIconViewItem</a>( parent, text ) {} // High-level drag and drop bool acceptDrop( const <a href="qmimesource.html">TQMimeSource</a> *mime ) const; @@ -198,7 +198,7 @@ const char* green_icon[]={ <a name="x2830"></a>void DDListBox::<a href="tqwidget.html#dropEvent">dropEvent</a>( <a href="qdropevent.html">TQDropEvent</a> *evt ) { - <a href="ntqstring.html">TQString</a> text; + <a href="tqstring.html">TQString</a> text; <a name="x2828"></a> if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>( evt, text ) ) <a href="ntqlistbox.html#insertItem">insertItem</a>( text ); @@ -235,7 +235,7 @@ const char* green_icon[]={ <a name="x2823"></a>void DDIconViewItem::<a href="qiconviewitem.html#dropped">dropped</a>( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a><TQIconDragItem>& ) { - <a href="ntqstring.html">TQString</a> label; + <a href="tqstring.html">TQString</a> label; if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>( evt, label ) ) setText( label ); @@ -251,7 +251,7 @@ const char* green_icon[]={ void <a name="f588"></a>DDIconView::slotNewItem( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a><TQIconDragItem>& ) { - <a href="ntqstring.html">TQString</a> label; + <a href="tqstring.html">TQString</a> label; if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>( evt, label ) ) { DDIconViewItem *item = new DDIconViewItem( this, label ); |