summaryrefslogtreecommitdiffstats
path: root/doc/html/iconview-simple_dd-main-cpp.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/iconview-simple_dd-main-cpp.html')
-rw-r--r--doc/html/iconview-simple_dd-main-cpp.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/iconview-simple_dd-main-cpp.html b/doc/html/iconview-simple_dd-main-cpp.html
index 985145657..8dab1e73c 100644
--- a/doc/html/iconview-simple_dd-main-cpp.html
+++ b/doc/html/iconview-simple_dd-main-cpp.html
@@ -110,22 +110,22 @@ const char* green_icon[]={
// ListBox -- low level drag and drop
-<a name="f2"></a>DDListBox::DDListBox( <a href="ntqwidget.html">TQWidget</a> * parent, const char * name, WFlags f ) :
+<a name="f2"></a>DDListBox::DDListBox( <a href="tqwidget.html">TQWidget</a> * parent, const char * name, WFlags f ) :
<a href="ntqlistbox.html">TQListBox</a>( parent, name, f )
{
- <a href="ntqwidget.html#setAcceptDrops">setAcceptDrops</a>( TRUE );
+ <a href="tqwidget.html#setAcceptDrops">setAcceptDrops</a>( TRUE );
dragging = FALSE;
}
-<a name="x2829"></a>void DDListBox::<a href="ntqwidget.html#dragEnterEvent">dragEnterEvent</a>( <a href="qdragenterevent.html">TQDragEnterEvent</a> *evt )
+<a name="x2829"></a>void DDListBox::<a href="tqwidget.html#dragEnterEvent">dragEnterEvent</a>( <a href="qdragenterevent.html">TQDragEnterEvent</a> *evt )
{
<a name="x2827"></a> if ( TQTextDrag::<a href="qtextdrag.html#canDecode">canDecode</a>( evt ) )
<a name="x2819"></a> evt-&gt;<a href="qdragmoveevent.html#accept">accept</a>();
}
-<a name="x2830"></a>void DDListBox::<a href="ntqwidget.html#dropEvent">dropEvent</a>( <a href="qdropevent.html">TQDropEvent</a> *evt )
+<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;
@@ -134,14 +134,14 @@ const char* green_icon[]={
}
-<a name="x2832"></a>void DDListBox::<a href="ntqwidget.html#mousePressEvent">mousePressEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> *evt )
+<a name="x2832"></a>void DDListBox::<a href="tqwidget.html#mousePressEvent">mousePressEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> *evt )
{
- TQListBox::<a href="ntqwidget.html#mousePressEvent">mousePressEvent</a>( evt );
+ TQListBox::<a href="tqwidget.html#mousePressEvent">mousePressEvent</a>( evt );
dragging = TRUE;
}
-<a name="x2831"></a>void DDListBox::<a href="ntqwidget.html#mouseMoveEvent">mouseMoveEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> * )
+<a name="x2831"></a>void DDListBox::<a href="tqwidget.html#mouseMoveEvent">mouseMoveEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> * )
{
if ( dragging ) {
<a href="ntqdragobject.html">TQDragObject</a> *d = new <a href="qtextdrag.html">TQTextDrag</a>( currentText(), this );
@@ -199,8 +199,8 @@ int main( int argc, char *argv[] )
DDIconView *iv = new DDIconView( split );
(void) new DDListBox( split );
app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( split );
- split-&gt;<a href="ntqwidget.html#resize">resize</a>( 600, 400 );
- split-&gt;<a href="ntqwidget.html#show">show</a>();
+ split-&gt;<a href="tqwidget.html#resize">resize</a>( 600, 400 );
+ split-&gt;<a href="tqwidget.html#show">show</a>();
// Set up the connection so that we can drop items into the icon view
TQObject::<a href="tqobject.html#connect">connect</a>(