summaryrefslogtreecommitdiffstats
path: root/doc/html/qdir-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qdir-example.html')
-rw-r--r--doc/html/qdir-example.html26
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/html/qdir-example.html b/doc/html/qdir-example.html
index ffd1d77f9..983df2ad5 100644
--- a/doc/html/qdir-example.html
+++ b/doc/html/qdir-example.html
@@ -60,12 +60,12 @@ body { background: #ffffff; color: black; }
#include &lt;<a href="qheader-h.html">ntqheader.h</a>&gt;
#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;
#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
-#include &lt;<a href="qpopupmenu-h.html">ntqpopupmenu.h</a>&gt;
+#include &lt;<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>&gt;
#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
-#include &lt;<a href="qtoolbutton-h.html">ntqtoolbutton.h</a>&gt;
+#include &lt;<a href="tqtoolbutton-h.html">tqtoolbutton.h</a>&gt;
#include &lt;<a href="qfile-h.html">ntqfile.h</a>&gt;
#include &lt;<a href="tqtextstream-h.html">tqtextstream.h</a>&gt;
-#include &lt;<a href="qtooltip-h.html">ntqtooltip.h</a>&gt;
+#include &lt;<a href="tqtooltip-h.html">tqtooltip.h</a>&gt;
#include &lt;stdlib.h&gt;
@@ -236,13 +236,13 @@ void <a name="f500"></a>PreviewWidget::previewUrl( const <a href="ntqurl.html">T
<a href="ntqpushbutton.html">TQPushButton</a> *p = new <a href="ntqpushbutton.html">TQPushButton</a>( this );
<a name="x1811"></a> p-&gt;<a href="ntqbutton.html#setPixmap">setPixmap</a>( TQPixmap( bookmarks ) );
-<a name="x1848"></a> TQToolTip::<a href="ntqtooltip.html#add">add</a>( p, tr( "Bookmarks" ) );
+<a name="x1848"></a> TQToolTip::<a href="tqtooltip.html#add">add</a>( p, tr( "Bookmarks" ) );
- bookmarkMenu = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( this );
-<a name="x1835"></a> <a href="tqobject.html#connect">connect</a>( bookmarkMenu, TQ_SIGNAL( <a href="ntqpopupmenu.html#activated">activated</a>( int ) ),
+ bookmarkMenu = new <a href="tqpopupmenu.html">TQPopupMenu</a>( this );
+<a name="x1835"></a> <a href="tqobject.html#connect">connect</a>( bookmarkMenu, TQ_SIGNAL( <a href="tqpopupmenu.html#activated">activated</a>( int ) ),
this, TQ_SLOT( bookmarkChosen( int ) ) );
- addId = bookmarkMenu-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>( <a href="tqobject.html#tr">tr</a>( "Add bookmark" ) );
- bookmarkMenu-&gt;<a href="ntqmenudata.html#insertSeparator">insertSeparator</a>();
+ addId = bookmarkMenu-&gt;<a href="tqmenudata.html#insertItem">insertItem</a>( <a href="tqobject.html#tr">tr</a>( "Add bookmark" ) );
+ bookmarkMenu-&gt;<a href="tqmenudata.html#insertSeparator">insertSeparator</a>();
<a href="ntqfile.html">TQFile</a> f( ".bookmarks" );
if ( f.<a href="ntqfile.html#open">open</a>( IO_ReadOnly ) ) {
@@ -252,7 +252,7 @@ void <a name="f500"></a>PreviewWidget::previewUrl( const <a href="ntqurl.html">T
TQStringList::Iterator it = bookmarkList.begin();
for ( ; it != bookmarkList.end(); ++it ) {
- bookmarkMenu-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>( *it );
+ bookmarkMenu-&gt;<a href="tqmenudata.html#insertItem">insertItem</a>( *it );
}
}
@@ -265,8 +265,8 @@ void <a name="f500"></a>PreviewWidget::previewUrl( const <a href="ntqurl.html">T
<a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL( <a href="ntqfiledialog.html#dirEntered">dirEntered</a>( const <a href="tqstring.html">TQString</a> &amp; ) ),
dirView, TQ_SLOT( <a href="ntqfiledialog.html#setDir">setDir</a>( const <a href="tqstring.html">TQString</a> &amp; ) ) );
- <a href="ntqtoolbutton.html">TQToolButton</a> *b = new <a href="ntqtoolbutton.html">TQToolButton</a>( this );
- TQToolTip::<a href="ntqtooltip.html#add">add</a>( b, tr( "Go Home!" ) );
+ <a href="tqtoolbutton.html">TQToolButton</a> *b = new <a href="tqtoolbutton.html">TQToolButton</a>( this );
+ TQToolTip::<a href="tqtooltip.html#add">add</a>( b, tr( "Go Home!" ) );
b-&gt;<a href="ntqbutton.html#setPixmap">setPixmap</a>( TQPixmap( home ) );
<a href="tqobject.html#connect">connect</a>( b, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ),
this, TQ_SLOT( goHome() ) );
@@ -305,9 +305,9 @@ void <a name="f493"></a>CustomFileDialog::bookmarkChosen( int i )
{
if ( i == addId ) {
bookmarkList &lt;&lt; dirPath();
- bookmarkMenu-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>( <a href="ntqfiledialog.html#dirPath">dirPath</a>() );
+ bookmarkMenu-&gt;<a href="tqmenudata.html#insertItem">insertItem</a>( <a href="ntqfiledialog.html#dirPath">dirPath</a>() );
} else {
-<a name="x1831"></a> <a href="ntqfiledialog.html#setDir">setDir</a>( bookmarkMenu-&gt;<a href="ntqmenudata.html#text">text</a>( i ) );
+<a name="x1831"></a> <a href="ntqfiledialog.html#setDir">setDir</a>( bookmarkMenu-&gt;<a href="tqmenudata.html#text">text</a>( i ) );
}
}