summaryrefslogtreecommitdiffstats
path: root/doc/html/simple_dd-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/simple_dd-example.html')
-rw-r--r--doc/html/simple_dd-example.html10
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>&amp; text, const <a href="ntqpixmap.html">TQPixmap</a>&amp; icon ) :
+ DDIconViewItem( <a href="ntqiconview.html">TQIconView</a> *parent, const <a href="tqstring.html">TQString</a>&amp; text, const <a href="ntqpixmap.html">TQPixmap</a>&amp; 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> &amp;text ) :
+ DDIconViewItem( <a href="ntqiconview.html">TQIconView</a> *parent, const <a href="tqstring.html">TQString</a> &amp;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>&lt;TQIconDragItem&gt;&amp; )
{
- <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>&lt;TQIconDragItem&gt;&amp; )
{
- <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 );