summaryrefslogtreecommitdiffstats
path: root/doc/html/listviews-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/listviews-example.html')
-rw-r--r--doc/html/listviews-example.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/listviews-example.html b/doc/html/listviews-example.html
index 92384609..22f261ee 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 &lt;<a href="qsplitter-h.html">ntqsplitter.h</a>&gt;
#include &lt;<a href="tqstring-h.html">tqstring.h</a>&gt;
#include &lt;<a href="tqobject-h.html">tqobject.h</a>&gt;
-#include &lt;<a href="qdatetime-h.html">ntqdatetime.h</a>&gt;
+#include &lt;<a href="tqdatetime-h.html">tqdatetime.h</a>&gt;
#include &lt;<a href="tqptrlist-h.html">tqptrlist.h</a>&gt;
#include &lt;<a href="qlistview-h.html">ntqlistview.h</a>&gt;
@@ -70,7 +70,7 @@ class TQPopupMenu;
class MessageHeader
{
public:
- MessageHeader( const <a href="tqstring.html">TQString</a> &amp;_sender, const <a href="tqstring.html">TQString</a> &amp;_subject, const <a href="ntqdatetime.html">TQDateTime</a> &amp;_datetime )
+ MessageHeader( const <a href="tqstring.html">TQString</a> &amp;_sender, const <a href="tqstring.html">TQString</a> &amp;_subject, const <a href="tqdatetime.html">TQDateTime</a> &amp;_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 &amp
for ( unsigned int i = 0; i &lt; 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 &lt;info@trolltech.com&gt; ", str, dt );
<a href="tqstring.html">TQString</a> body;