summaryrefslogtreecommitdiffstats
path: root/doc/html/outliner-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-09-04 11:53:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-09-04 13:56:43 +0900
commit0582c90a9ed4b965629267713f51c0da7c38b39d (patch)
treecae95e850081d0a7f2be6cef5837f43a28d53d2c /doc/html/outliner-example.html
parent39f8a475b4ec5c87a11a7e9300a30ef1c5b4a7e1 (diff)
downloadtqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.tar.gz
tqt3-0582c90a9ed4b965629267713f51c0da7c38b39d.zip
Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/outliner-example.html')
-rw-r--r--doc/html/outliner-example.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/outliner-example.html b/doc/html/outliner-example.html
index b1ce465b2..d2fe63295 100644
--- a/doc/html/outliner-example.html
+++ b/doc/html/outliner-example.html
@@ -146,7 +146,7 @@ private:
#include "outlinetree.h"
#include &lt;<a href="tqfile-h.html">tqfile.h</a>&gt;
-#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
+#include &lt;<a href="tqmessagebox-h.html">tqmessagebox.h</a>&gt;
<a name="f522"></a>OutlineTree::OutlineTree( const <a href="tqstring.html">TQString</a> fileName, TQWidget *parent, const char *name )
: <a href="tqlistview.html">TQListView</a>( parent, name )
@@ -159,13 +159,13 @@ private:
// read the XML file and create DOM tree
<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 name="x1917"></a> TQMessageBox::<a href="tqmessagebox.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 ) );
return;
}
if ( !domTree.setContent( &amp;opmlFile ) ) {
- TQMessageBox::<a href="ntqmessagebox.html#critical">critical</a>( 0,
+ TQMessageBox::<a href="tqmessagebox.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="tqfile.html#close">close</a>();