summaryrefslogtreecommitdiffstats
path: root/doc/html/helpviewer-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/helpviewer-example.html')
-rw-r--r--doc/html/helpviewer-example.html52
1 files changed, 26 insertions, 26 deletions
diff --git a/doc/html/helpviewer-example.html b/doc/html/helpviewer-example.html
index 78fa6cf84..ba097e294 100644
--- a/doc/html/helpviewer-example.html
+++ b/doc/html/helpviewer-example.html
@@ -54,7 +54,7 @@ TQt's richtext capabilities.
#include &lt;<a href="tqtextbrowser-h.html">tqtextbrowser.h</a>&gt;
#include &lt;<a href="tqstringlist-h.html">tqstringlist.h</a>&gt;
#include &lt;<a href="tqmap-h.html">tqmap.h</a>&gt;
-#include &lt;<a href="qdir-h.html">ntqdir.h</a>&gt;
+#include &lt;<a href="tqdir-h.html">tqdir.h</a>&gt;
class TQComboBox;
class TQPopupMenu;
@@ -123,19 +123,19 @@ private:
#include &lt;<a href="tqtoolbar-h.html">tqtoolbar.h</a>&gt;
#include &lt;<a href="tqtoolbutton-h.html">tqtoolbutton.h</a>&gt;
#include &lt;<a href="tqiconset-h.html">tqiconset.h</a>&gt;
-#include &lt;<a href="qfile-h.html">ntqfile.h</a>&gt;
+#include &lt;<a href="tqfile-h.html">tqfile.h</a>&gt;
#include &lt;<a href="tqtextstream-h.html">tqtextstream.h</a>&gt;
#include &lt;<a href="tqstylesheet-h.html">tqstylesheet.h</a>&gt;
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
-#include &lt;<a href="qfiledialog-h.html">ntqfiledialog.h</a>&gt;
+#include &lt;<a href="tqfiledialog-h.html">tqfiledialog.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt;
#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;
#include &lt;<a href="qlineedit-h.html">ntqlineedit.h</a>&gt;
#include &lt;<a href="tqobjectlist-h.html">tqobjectlist.h</a>&gt;
-#include &lt;<a href="qfileinfo-h.html">ntqfileinfo.h</a>&gt;
-#include &lt;<a href="qfile-h.html">ntqfile.h</a>&gt;
-#include &lt;<a href="qdatastream-h.html">ntqdatastream.h</a>&gt;
+#include &lt;<a href="tqfileinfo-h.html">tqfileinfo.h</a>&gt;
+#include &lt;<a href="tqfile-h.html">tqfile.h</a>&gt;
+#include &lt;<a href="tqdatastream-h.html">tqdatastream.h</a>&gt;
#include &lt;<a href="qprinter-h.html">ntqprinter.h</a>&gt;
#include &lt;<a href="qsimplerichtext-h.html">ntqsimplerichtext.h</a>&gt;
#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
@@ -294,19 +294,19 @@ HelpWindow::~HelpWindow()
{
history = mHistory.values();
-<a name="x986"></a> <a href="ntqfile.html">TQFile</a> f( TQDir::<a href="ntqdir.html#currentDirPath">currentDirPath</a>() + "/.history" );
-<a name="x989"></a> f.<a href="ntqfile.html#open">open</a>( <a href="ntqfile.html#open">IO_WriteOnly</a> );
- <a href="ntqdatastream.html">TQDataStream</a> s( &amp;f );
+<a name="x986"></a> <a href="tqfile.html">TQFile</a> f( TQDir::<a href="tqdir.html#currentDirPath">currentDirPath</a>() + "/.history" );
+<a name="x989"></a> f.<a href="tqfile.html#open">open</a>( <a href="tqfile.html#open">IO_WriteOnly</a> );
+ <a href="tqdatastream.html">TQDataStream</a> s( &amp;f );
s &lt;&lt; history;
-<a name="x987"></a> f.<a href="ntqfile.html#close">close</a>();
+<a name="x987"></a> f.<a href="tqfile.html#close">close</a>();
bookmarks = mBookmarks.values();
- <a href="ntqfile.html">TQFile</a> f2( TQDir::<a href="ntqdir.html#currentDirPath">currentDirPath</a>() + "/.bookmarks" );
- f2.<a href="ntqfile.html#open">open</a>( IO_WriteOnly );
- <a href="ntqdatastream.html">TQDataStream</a> s2( &amp;f2 );
+ <a href="tqfile.html">TQFile</a> f2( TQDir::<a href="tqdir.html#currentDirPath">currentDirPath</a>() + "/.bookmarks" );
+ f2.<a href="tqfile.html#open">open</a>( IO_WriteOnly );
+ <a href="tqdatastream.html">TQDataStream</a> s2( &amp;f2 );
s2 &lt;&lt; bookmarks;
- f2.<a href="ntqfile.html#close">close</a>();
+ f2.<a href="tqfile.html#close">close</a>();
}
void <a name="f354"></a>HelpWindow::about()
@@ -327,7 +327,7 @@ void <a name="f355"></a>HelpWindow::aboutTQt()
void <a name="f356"></a>HelpWindow::openFile()
{
#ifndef TQT_NO_FILEDIALOG
- <a href="tqstring.html">TQString</a> fn = TQFileDialog::<a href="ntqfiledialog.html#getOpenFileName">getOpenFileName</a>( <a href="tqstring.html#TQString-null">TQString::null</a>, TQString::null, this );
+ <a href="tqstring.html">TQString</a> fn = TQFileDialog::<a href="tqfiledialog.html#getOpenFileName">getOpenFileName</a>( <a href="tqstring.html#TQString-null">TQString::null</a>, TQString::null, this );
if ( !fn.<a href="tqstring.html#isEmpty">isEmpty</a>() )
browser-&gt;<a href="tqtextbrowser.html#setSource">setSource</a>( fn );
#endif
@@ -383,12 +383,12 @@ void <a name="f359"></a>HelpWindow::pathSelected( const <a href="tqstring.html">
void <a name="f360"></a>HelpWindow::readHistory()
{
-<a name="x988"></a> if ( TQFile::<a href="ntqfile.html#exists">exists</a>( TQDir::<a href="ntqdir.html#currentDirPath">currentDirPath</a>() + "/.history" ) ) {
- <a href="ntqfile.html">TQFile</a> f( TQDir::<a href="ntqdir.html#currentDirPath">currentDirPath</a>() + "/.history" );
- f.<a href="ntqfile.html#open">open</a>( <a href="ntqfile.html#open">IO_ReadOnly</a> );
- <a href="ntqdatastream.html">TQDataStream</a> s( &amp;f );
+<a name="x988"></a> if ( TQFile::<a href="tqfile.html#exists">exists</a>( TQDir::<a href="tqdir.html#currentDirPath">currentDirPath</a>() + "/.history" ) ) {
+ <a href="tqfile.html">TQFile</a> f( TQDir::<a href="tqdir.html#currentDirPath">currentDirPath</a>() + "/.history" );
+ f.<a href="tqfile.html#open">open</a>( <a href="tqfile.html#open">IO_ReadOnly</a> );
+ <a href="tqdatastream.html">TQDataStream</a> s( &amp;f );
s &gt;&gt; history;
- f.<a href="ntqfile.html#close">close</a>();
+ f.<a href="tqfile.html#close">close</a>();
while ( history.count() &gt; 20 )
history.remove( history.begin() );
}
@@ -396,12 +396,12 @@ void <a name="f360"></a>HelpWindow::readHistory()
void <a name="f361"></a>HelpWindow::readBookmarks()
{
- if ( TQFile::<a href="ntqfile.html#exists">exists</a>( TQDir::<a href="ntqdir.html#currentDirPath">currentDirPath</a>() + "/.bookmarks" ) ) {
- <a href="ntqfile.html">TQFile</a> f( TQDir::<a href="ntqdir.html#currentDirPath">currentDirPath</a>() + "/.bookmarks" );
- f.<a href="ntqfile.html#open">open</a>( IO_ReadOnly );
- <a href="ntqdatastream.html">TQDataStream</a> s( &amp;f );
+ if ( TQFile::<a href="tqfile.html#exists">exists</a>( TQDir::<a href="tqdir.html#currentDirPath">currentDirPath</a>() + "/.bookmarks" ) ) {
+ <a href="tqfile.html">TQFile</a> f( TQDir::<a href="tqdir.html#currentDirPath">currentDirPath</a>() + "/.bookmarks" );
+ f.<a href="tqfile.html#open">open</a>( IO_ReadOnly );
+ <a href="tqdatastream.html">TQDataStream</a> s( &amp;f );
s &gt;&gt; bookmarks;
- f.<a href="ntqfile.html#close">close</a>();
+ f.<a href="tqfile.html#close">close</a>();
}
}
@@ -437,7 +437,7 @@ void <a name="f364"></a>HelpWindow::addBookmark()
#include "helpwindow.h"
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-#include &lt;<a href="qdir-h.html">ntqdir.h</a>&gt;
+#include &lt;<a href="tqdir-h.html">tqdir.h</a>&gt;
#include &lt;stdlib.h&gt;