diff options
Diffstat (limited to 'doc/html/richtext-example.html')
-rw-r--r-- | doc/html/richtext-example.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/richtext-example.html b/doc/html/richtext-example.html index b14bf17bb..f592e46e4 100644 --- a/doc/html/richtext-example.html +++ b/doc/html/richtext-example.html @@ -64,7 +64,7 @@ public: MyRichText( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ); protected: - <a href="ntqtextview.html">TQTextView</a> *view; + <a href="tqtextview.html">TQTextView</a> *view; <a href="ntqpushbutton.html">TQPushButton</a> *bClose, *bNext, *bPrev; int num; @@ -94,7 +94,7 @@ protected slots: #include <<a href="qhbox-h.html">ntqhbox.h</a>> #include <<a href="qhbox-h.html">ntqhbox.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> -#include <<a href="qtextview-h.html">ntqtextview.h</a>> +#include <<a href="tqtextview-h.html">tqtextview.h</a>> #include <<a href="qbrush-h.html">ntqbrush.h</a>> #include <<a href="qapplication-h.html">ntqapplication.h</a>> @@ -161,16 +161,16 @@ static const char* sayings[] = { { <a href="ntqframe.html#setMargin">setMargin</a>( 5 ); - view = new <a href="ntqtextview.html">TQTextView</a>( this ); -<a name="x465"></a> view-><a href="ntqtextedit.html#setText">setText</a>( "This is a <b>Test</b> with <i>italic</i> <u>stuff</u>" ); + view = new <a href="tqtextview.html">TQTextView</a>( this ); +<a name="x465"></a> view-><a href="tqtextedit.html#setText">setText</a>( "This is a <b>Test</b> with <i>italic</i> <u>stuff</u>" ); <a href="ntqbrush.html">TQBrush</a> paper; <a name="x461"></a> paper.<a href="ntqbrush.html#setPixmap">setPixmap</a>( TQPixmap( "../richtext/marble.png" ) ); <a name="x460"></a> if ( paper.<a href="ntqbrush.html#pixmap">pixmap</a>() != 0 ) -<a name="x464"></a> view-><a href="ntqtextedit.html#setPaper">setPaper</a>( paper ); +<a name="x464"></a> view-><a href="tqtextedit.html#setPaper">setPaper</a>( paper ); else - view-><a href="ntqtextedit.html#setPaper">setPaper</a>( white ); + view-><a href="tqtextedit.html#setPaper">setPaper</a>( white ); - view-><a href="ntqtextedit.html#setText">setText</a>( sayings[0] ); + view-><a href="tqtextedit.html#setText">setText</a>( sayings[0] ); <a name="x467"></a> view-><a href="tqwidget.html#setMinimumSize">setMinimumSize</a>( 450, 250 ); <a href="ntqhbox.html">TQHBox</a> *buttons = new <a href="ntqhbox.html">TQHBox</a>( this ); @@ -196,7 +196,7 @@ void <a name="f256"></a>MyRichText::prev() num--; - view-><a href="ntqtextedit.html#setText">setText</a>( sayings[num] ); + view-><a href="tqtextedit.html#setText">setText</a>( sayings[num] ); if ( num == 0 ) bPrev-><a href="tqwidget.html#setEnabled">setEnabled</a>( FALSE ); @@ -209,7 +209,7 @@ void <a name="f257"></a>MyRichText::next() if ( !sayings[++num] ) return; - view-><a href="ntqtextedit.html#setText">setText</a>( sayings[num] ); + view-><a href="tqtextedit.html#setText">setText</a>( sayings[num] ); if ( !sayings[num + 1] ) bNext-><a href="tqwidget.html#setEnabled">setEnabled</a>( FALSE ); |