summaryrefslogtreecommitdiffstats
path: root/doc/html/table-statistics-statistics-cpp.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-23 14:04:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-27 16:08:54 +0900
commit04913ce7a46fd027856e83a96205fdc388742a19 (patch)
treea04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/table-statistics-statistics-cpp.html
parentc11c0f228b65f7471a26513ef8dbde413e75f8fa (diff)
downloadtqt3-04913ce7a46fd027856e83a96205fdc388742a19.tar.gz
tqt3-04913ce7a46fd027856e83a96205fdc388742a19.zip
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/table-statistics-statistics-cpp.html')
-rw-r--r--doc/html/table-statistics-statistics-cpp.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/table-statistics-statistics-cpp.html b/doc/html/table-statistics-statistics-cpp.html
index e4a99c1e..4f2606e3 100644
--- a/doc/html/table-statistics-statistics-cpp.html
+++ b/doc/html/table-statistics-statistics-cpp.html
@@ -74,7 +74,7 @@ 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, TQ_SIGNAL( <a href="ntqtable.html#valueChanged">valueChanged</a>( int, int ) ),
+ <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL( <a href="ntqtable.html#valueChanged">valueChanged</a>( int, int ) ),
this, TQ_SLOT( recalcSum( int, int ) ) );
}
@@ -175,7 +175,7 @@ void <a name="f147"></a>Table::recalcSum( int, int col )
{
// create an editor - a combobox in our case
( (ComboItem*)this )-&gt;cb = new <a href="ntqcombobox.html">TQComboBox</a>( <a href="qtableitem.html#table">table</a>()-&gt;viewport() );
- TQObject::<a href="ntqobject.html#connect">connect</a>( cb, TQ_SIGNAL( activated( int ) ), table(), TQ_SLOT( doValueChanged() ) );
+ TQObject::<a href="tqobject.html#connect">connect</a>( cb, TQ_SIGNAL( activated( int ) ), table(), TQ_SLOT( doValueChanged() ) );
cb-&gt;insertItem( "Yes" );
cb-&gt;insertItem( "No" );
// and initialize it
@@ -187,7 +187,7 @@ void <a name="f147"></a>Table::recalcSum( int, int col )
{
// the user changed the value of the combobox, so synchronize the
// value of the item (its text), with the value of the combobox
-<a name="x2783"></a> if ( w-&gt;<a href="ntqobject.html#inherits">inherits</a>( "TQComboBox" ) )
+<a name="x2783"></a> if ( w-&gt;<a href="tqobject.html#inherits">inherits</a>( "TQComboBox" ) )
<a href="qtableitem.html#setText">setText</a>( ( (TQComboBox*)w )-&gt;currentText() );
else
TQTableItem::<a href="qtableitem.html#setContentFromEditor">setContentFromEditor</a>( w );