diff options
Diffstat (limited to 'doc/html/addressbook-example.html')
-rw-r--r-- | doc/html/addressbook-example.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/addressbook-example.html b/doc/html/addressbook-example.html index 957cc0105..c61e3fb32 100644 --- a/doc/html/addressbook-example.html +++ b/doc/html/addressbook-example.html @@ -290,7 +290,7 @@ protected: #include <<a href="qlabel-h.html">ntqlabel.h</a>> #include <<a href="qcheckbox-h.html">ntqcheckbox.h</a>> #include <<a href="qfile-h.html">ntqfile.h</a>> -#include <<a href="qtextstream-h.html">ntqtextstream.h</a>> +#include <<a href="tqtextstream-h.html">tqtextstream.h</a>> <a name="f274"></a>ABCentralWidget::ABCentralWidget( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) : <a href="tqwidget.html">TQWidget</a>( parent, name ) @@ -313,8 +313,8 @@ void <a name="f275"></a>ABCentralWidget::save( const <a href="tqstring.html">TQS if ( !f.<a href="ntqfile.html#open">open</a>( <a href="ntqfile.html#open">IO_WriteOnly</a> ) ) return; - <a href="ntqtextstream.html">TQTextStream</a> t( &f ); -<a name="x603"></a> t.<a href="ntqtextstream.html#setEncoding">setEncoding</a>(TQTextStream::UnicodeUTF8); + <a href="tqtextstream.html">TQTextStream</a> t( &f ); +<a name="x603"></a> t.<a href="tqtextstream.html#setEncoding">setEncoding</a>(TQTextStream::UnicodeUTF8); <a href="qlistviewitemiterator.html">TQListViewItemIterator</a> it( listView ); @@ -333,13 +333,13 @@ void <a name="f276"></a>ABCentralWidget::load( const <a href="tqstring.html">TQS if ( !f.<a href="ntqfile.html#open">open</a>( <a href="ntqfile.html#open">IO_ReadOnly</a> ) ) return; - <a href="ntqtextstream.html">TQTextStream</a> t( &f ); - t.<a href="ntqtextstream.html#setEncoding">setEncoding</a>(TQTextStream::UnicodeUTF8); + <a href="tqtextstream.html">TQTextStream</a> t( &f ); + t.<a href="tqtextstream.html#setEncoding">setEncoding</a>(TQTextStream::UnicodeUTF8); -<a name="x601"></a> while ( !t.<a href="ntqtextstream.html#atEnd">atEnd</a>() ) { +<a name="x601"></a> while ( !t.<a href="tqtextstream.html#atEnd">atEnd</a>() ) { <a href="qlistviewitem.html">TQListViewItem</a> *item = new <a href="qlistviewitem.html">TQListViewItem</a>( listView ); for ( unsigned int i = 0; i < 4; i++ ) -<a name="x602"></a><a name="x595"></a> item-><a href="qlistviewitem.html#setText">setText</a>( i, t.<a href="ntqtextstream.html#readLine">readLine</a>() ); +<a name="x602"></a><a name="x595"></a> item-><a href="qlistviewitem.html#setText">setText</a>( i, t.<a href="tqtextstream.html#readLine">readLine</a>() ); } f.<a href="ntqfile.html#close">close</a>(); |