diff options
Diffstat (limited to 'doc/html/listviews-example.html')
-rw-r--r-- | doc/html/listviews-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/listviews-example.html b/doc/html/listviews-example.html index 92384609d..22f261ee2 100644 --- a/doc/html/listviews-example.html +++ b/doc/html/listviews-example.html @@ -54,7 +54,7 @@ and works like the main window of a mail client. #include <<a href="qsplitter-h.html">ntqsplitter.h</a>> #include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="tqobject-h.html">tqobject.h</a>> -#include <<a href="qdatetime-h.html">ntqdatetime.h</a>> +#include <<a href="tqdatetime-h.html">tqdatetime.h</a>> #include <<a href="tqptrlist-h.html">tqptrlist.h</a>> #include <<a href="qlistview-h.html">ntqlistview.h</a>> @@ -70,7 +70,7 @@ class TQPopupMenu; class MessageHeader { public: - MessageHeader( const <a href="tqstring.html">TQString</a> &_sender, const <a href="tqstring.html">TQString</a> &_subject, const <a href="ntqdatetime.html">TQDateTime</a> &_datetime ) + MessageHeader( const <a href="tqstring.html">TQString</a> &_sender, const <a href="tqstring.html">TQString</a> &_subject, const <a href="tqdatetime.html">TQDateTime</a> &_datetime ) : msender( _sender ), msubject( _subject ), mdatetime( _datetime ) {} @@ -79,11 +79,11 @@ public: <a href="tqstring.html">TQString</a> sender() { return msender; } <a href="tqstring.html">TQString</a> subject() { return msubject; } - <a href="ntqdatetime.html">TQDateTime</a> datetime() { return mdatetime; } + <a href="tqdatetime.html">TQDateTime</a> datetime() { return mdatetime; } protected: <a href="tqstring.html">TQString</a> msender, msubject; - <a href="ntqdatetime.html">TQDateTime</a> mdatetime; + <a href="tqdatetime.html">TQDateTime</a> mdatetime; }; @@ -398,8 +398,8 @@ void <a name="f213"></a>ListViews::initFolder( Folder *folder, unsigned int & for ( unsigned int i = 0; i < 15; i++, count++ ) { <a href="tqstring.html">TQString</a> str; str = TQString( "Message %1 " ).arg( count ); -<a name="x137"></a> <a href="ntqdatetime.html">TQDateTime</a> dt = TQDateTime::<a href="ntqdatetime.html#currentDateTime">currentDateTime</a>(); -<a name="x136"></a> dt = dt.<a href="ntqdatetime.html#addSecs">addSecs</a>( 60 * count ); +<a name="x137"></a> <a href="tqdatetime.html">TQDateTime</a> dt = TQDateTime::<a href="tqdatetime.html#currentDateTime">currentDateTime</a>(); +<a name="x136"></a> dt = dt.<a href="tqdatetime.html#addSecs">addSecs</a>( 60 * count ); MessageHeader mh( "Trolltech <[email protected]> ", str, dt ); <a href="tqstring.html">TQString</a> body; |