summaryrefslogtreecommitdiffstats
path: root/doc/html/outliner-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
commit252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch)
treeb48be8863db3bc1c223ac270a258b5c1124cb0e3 /doc/html/outliner-example.html
parent87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff)
downloadtqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.tar.gz
tqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.zip
Rename IO and network class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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();