diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-10 18:56:16 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-10 18:56:16 +0900 |
commit | 252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch) | |
tree | b48be8863db3bc1c223ac270a258b5c1124cb0e3 /doc/html/outliner-example.html | |
parent | 87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff) | |
download | tqt3-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.html | 10 |
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 <<a href="qfile-h.html">ntqfile.h</a>> +#include <<a href="tqfile-h.html">tqfile.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> <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(); |