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.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>();