summaryrefslogtreecommitdiffstats
path: root/doc/html/outliner-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/outliner-example.html')
-rw-r--r--doc/html/outliner-example.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/outliner-example.html b/doc/html/outliner-example.html
index 2a2b53d85..93f84e877 100644
--- a/doc/html/outliner-example.html
+++ b/doc/html/outliner-example.html
@@ -145,7 +145,7 @@ private:
*****************************************************************************/
#include "outlinetree.h"
-#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="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
<a name="f522"></a>OutlineTree::OutlineTree( const <a href="tqstring.html">TQString</a> fileName, TQWidget *parent, const char *name )
@@ -157,8 +157,8 @@ private:
<a href="ntqlistview.html#setRootIsDecorated">setRootIsDecorated</a>( TRUE );
// read the XML file and create DOM tree
- <a href="ntqfile.html">TQFile</a> opmlFile( fileName );
-<a name="x1915"></a> if ( !opmlFile.<a href="ntqfile.html#open">open</a>( <a href="ntqfile.html#open">IO_ReadOnly</a> ) ) {
+ <a href="tqfile.html">TQFile</a> opmlFile( fileName );
+<a name="x1915"></a> if ( !opmlFile.<a href="tqfile.html#open">open</a>( <a href="tqfile.html#open">IO_ReadOnly</a> ) ) {
<a name="x1917"></a> TQMessageBox::<a href="ntqmessagebox.html#critical">critical</a>( 0,
<a href="tqobject.html#tr">tr</a>( "Critical Error" ),
<a href="tqobject.html#tr">tr</a>( "Cannot open file %1" ).arg( fileName ) );
@@ -168,10 +168,10 @@ private:
TQMessageBox::<a href="ntqmessagebox.html#critical">critical</a>( 0,
<a href="tqobject.html#tr">tr</a>( "Critical Error" ),
<a href="tqobject.html#tr">tr</a>( "Parsing error for file %1" ).arg( fileName ) );
-<a name="x1914"></a> opmlFile.<a href="ntqfile.html#close">close</a>();
+<a name="x1914"></a> opmlFile.<a href="tqfile.html#close">close</a>();
return;
}
- opmlFile.<a href="ntqfile.html#close">close</a>();
+ opmlFile.<a href="tqfile.html#close">close</a>();
// get the header information from the DOM
<a href="tqdomelement.html">TQDomElement</a> root = domTree.documentElement();