diff options
Diffstat (limited to 'doc/html/xml-sax-features-walkthrough.html')
-rw-r--r-- | doc/html/xml-sax-features-walkthrough.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/xml-sax-features-walkthrough.html b/doc/html/xml-sax-features-walkthrough.html index fd61011d2..7b8241de0 100644 --- a/doc/html/xml-sax-features-walkthrough.html +++ b/doc/html/xml-sax-features-walkthrough.html @@ -55,7 +55,7 @@ namespace URIs. <p> Let's begin with the main program of the application. First the boring part: we include all the classes we need: <p> <pre> #include "structureparser.h" - #include <<a href="qapplication-h.html">ntqapplication.h</a>> + #include <<a href="tqapplication-h.html">tqapplication.h</a>> #include <<a href="tqfile-h.html">tqfile.h</a>> #include <<a href="tqxml-h.html">tqxml.h</a>> #include <<a href="tqlistview-h.html">tqlistview.h</a>> @@ -67,7 +67,7 @@ part: we include all the classes we need: the XML parser that we implement in <a href="#structureparser.cpp">structureparser.cpp.</a> <p> <pre> int main( int argc, char **argv ) { - <a href="ntqapplication.html">TQApplication</a> app( argc, argv ); + <a href="tqapplication.html">TQApplication</a> app( argc, argv ); </pre> <p> As usual we then create a TQt application object and hand command line arguments over to it. @@ -176,9 +176,9 @@ FALSE and <em>http://xml.org/sax/features/namespace-prefixes</em> TRUE. </pre> <p> The second row of the <em>container</em> grid is filled with three labels denoting the reader settings that belong to the above listview. -<p> <pre> app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( container ); +<p> <pre> app.<a href="tqapplication.html#setMainWidget">setMainWidget</a>( container ); container-><a href="tqwidget.html#show">show</a>(); - return app.<a href="ntqapplication.html#exec">exec</a>(); + return app.<a href="tqapplication.html#exec">exec</a>(); } </pre> <p> Same procedure as with every TQt GUI program: the grid serves as the |