diff options
Diffstat (limited to 'doc/html/statistics-example.html')
-rw-r--r-- | doc/html/statistics-example.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/statistics-example.html b/doc/html/statistics-example.html index d34279d06..4bd999d59 100644 --- a/doc/html/statistics-example.html +++ b/doc/html/statistics-example.html @@ -135,8 +135,8 @@ const char* dirs[] = { <a href="ntqtable.html#adjustColumn">adjustColumn</a>( 0 ); // if the user edited something we might need to recalculate the sum - <a href="ntqobject.html#connect">connect</a>( this, SIGNAL( <a href="ntqtable.html#valueChanged">valueChanged</a>( int, int ) ), - this, SLOT( recalcSum( int, int ) ) ); + <a href="ntqobject.html#connect">connect</a>( this, TQ_SIGNAL( <a href="ntqtable.html#valueChanged">valueChanged</a>( int, int ) ), + this, TQ_SLOT( recalcSum( int, int ) ) ); } void <a name="f579"></a>Table::initTable() @@ -236,7 +236,7 @@ void <a name="f580"></a>Table::recalcSum( int, int col ) { // create an editor - a combobox in our case ( (ComboItem*)this )->cb = new <a href="ntqcombobox.html">TQComboBox</a>( <a href="qtableitem.html#table">table</a>()->viewport() ); - TQObject::<a href="ntqobject.html#connect">connect</a>( cb, SIGNAL( activated( int ) ), table(), SLOT( doValueChanged() ) ); + TQObject::<a href="ntqobject.html#connect">connect</a>( cb, TQ_SIGNAL( activated( int ) ), table(), TQ_SLOT( doValueChanged() ) ); cb->insertItem( "Yes" ); cb->insertItem( "No" ); // and initialize it |