diff options
Diffstat (limited to 'doc/html/simple-font-demo-example.html')
-rw-r--r-- | doc/html/simple-font-demo-example.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/simple-font-demo-example.html b/doc/html/simple-font-demo-example.html index 4dc4addac..572a4d512 100644 --- a/doc/html/simple-font-demo-example.html +++ b/doc/html/simple-font-demo-example.html @@ -69,9 +69,9 @@ private: <a href="tqtextview.html">TQTextView</a> * greetings; <a href="tqtextview.html">TQTextView</a> * fontInfo; - <a href="ntqpushbutton.html">TQPushButton</a> * defaultButton; - <a href="ntqpushbutton.html">TQPushButton</a> * sansSerifButton; - <a href="ntqpushbutton.html">TQPushButton</a> * italicsButton; + <a href="tqpushbutton.html">TQPushButton</a> * defaultButton; + <a href="tqpushbutton.html">TQPushButton</a> * sansSerifButton; + <a href="tqpushbutton.html">TQPushButton</a> * italicsButton; }; #endif @@ -85,7 +85,7 @@ private: #include <<a href="tqstring-h.html">tqstring.h</a>> #include <<a href="tqstringlist-h.html">tqstringlist.h</a>> #include <<a href="tqtextview-h.html">tqtextview.h</a>> -#include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> +#include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="qlayout-h.html">ntqlayout.h</a>> <a name="f590"></a>Viewer::Viewer() @@ -107,19 +107,19 @@ private: setDefault(); - defaultButton = new <a href="ntqpushbutton.html">TQPushButton</a>( "Default", this, + defaultButton = new <a href="tqpushbutton.html">TQPushButton</a>( "Default", this, "pushbutton1" ); <a name="x2860"></a> defaultButton-><a href="tqwidget.html#setFont">setFont</a>( TQFont( "times" ) ); <a href="tqobject.html#connect">connect</a>( defaultButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( setDefault() ) ); - sansSerifButton = new <a href="ntqpushbutton.html">TQPushButton</a>( "Sans Serif", this, + sansSerifButton = new <a href="tqpushbutton.html">TQPushButton</a>( "Sans Serif", this, "pushbutton2" ); sansSerifButton-><a href="tqwidget.html#setFont">setFont</a>( TQFont( "Helvetica", 12 ) ); <a href="tqobject.html#connect">connect</a>( sansSerifButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), this, TQ_SLOT( setSansSerif() ) ); - italicsButton = new <a href="ntqpushbutton.html">TQPushButton</a>( "Italics", this, + italicsButton = new <a href="tqpushbutton.html">TQPushButton</a>( "Italics", this, "pushbutton3" ); italicsButton-><a href="tqwidget.html#setFont">setFont</a>( TQFont( "lucida", 12, TQFont::Bold, TRUE ) ); <a href="tqobject.html#connect">connect</a>( italicsButton, TQ_SIGNAL( <a href="ntqbutton.html#clicked">clicked</a>() ), |