diff options
Diffstat (limited to 'doc/html/scribble-example.html')
-rw-r--r-- | doc/html/scribble-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/scribble-example.html b/doc/html/scribble-example.html index 5d5066e5c..80ea26bb2 100644 --- a/doc/html/scribble-example.html +++ b/doc/html/scribble-example.html @@ -255,24 +255,24 @@ void <a name="f340"></a>Canvas::clearScreen() <a href="ntqtoolbar.html">TQToolBar</a> *tools = new <a href="ntqtoolbar.html">TQToolBar</a>( this ); - bSave = new <a href="ntqtoolbutton.html">TQToolButton</a>( TQPixmap(), "Save", "Save as PNG image", this, SLOT( slotSave() ), tools ); + bSave = new <a href="ntqtoolbutton.html">TQToolButton</a>( TQPixmap(), "Save", "Save as PNG image", this, TQ_SLOT( slotSave() ), tools ); <a name="x944"></a> bSave-><a href="ntqbutton.html#setText">setText</a>( "Save as..." ); <a name="x943"></a> tools-><a href="ntqtoolbar.html#addSeparator">addSeparator</a>(); - bPColor = new <a href="ntqtoolbutton.html">TQToolButton</a>( TQPixmap(), "Choose Pen Color", "Choose Pen Color", this, SLOT( slotColor() ), tools ); + bPColor = new <a href="ntqtoolbutton.html">TQToolButton</a>( TQPixmap(), "Choose Pen Color", "Choose Pen Color", this, TQ_SLOT( slotColor() ), tools ); bPColor-><a href="ntqbutton.html#setText">setText</a>( "Choose Pen Color..." ); tools-><a href="ntqtoolbar.html#addSeparator">addSeparator</a>(); bPWidth = new <a href="ntqspinbox.html">TQSpinBox</a>( 1, 20, 1, tools ); <a name="x945"></a> TQToolTip::<a href="ntqtooltip.html#add">add</a>( bPWidth, "Choose Pen Width" ); -<a name="x939"></a> <a href="ntqobject.html#connect">connect</a>( bPWidth, SIGNAL( <a href="ntqspinbox.html#valueChanged">valueChanged</a>( int ) ), this, SLOT( slotWidth( int ) ) ); +<a name="x939"></a> <a href="ntqobject.html#connect">connect</a>( bPWidth, TQ_SIGNAL( <a href="ntqspinbox.html#valueChanged">valueChanged</a>( int ) ), this, TQ_SLOT( slotWidth( int ) ) ); <a name="x938"></a> bPWidth-><a href="ntqspinbox.html#setValue">setValue</a>( 3 ); tools-><a href="ntqtoolbar.html#addSeparator">addSeparator</a>(); - bClear = new <a href="ntqtoolbutton.html">TQToolButton</a>( TQPixmap(), "Clear Screen", "Clear Screen", this, SLOT( slotClear() ), tools ); + bClear = new <a href="ntqtoolbutton.html">TQToolButton</a>( TQPixmap(), "Clear Screen", "Clear Screen", this, TQ_SLOT( slotClear() ), tools ); bClear-><a href="ntqbutton.html#setText">setText</a>( "Clear Screen" ); } |