From 04913ce7a46fd027856e83a96205fdc388742a19 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 23 May 2024 14:04:45 +0900 Subject: Rename ntqobject*.h and qobject*.cpp to tqobject* Signed-off-by: Michele Calgaro --- doc/html/qtableitem.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/qtableitem.html') diff --git a/doc/html/qtableitem.html b/doc/html/qtableitem.html index 815f0b3ef..476884cdc 100644 --- a/doc/html/qtableitem.html +++ b/doc/html/qtableitem.html @@ -263,7 +263,7 @@ reimplement setContentFromEditor(), and may { // create an editor - a combobox in our case ( (ComboItem*)this )->cb = new TQComboBox( table()->viewport() ); - TQObject::connect( cb, TQ_SIGNAL( activated( int ) ), table(), TQ_SLOT( doValueChanged() ) ); + TQObject::connect( cb, TQ_SIGNAL( activated( int ) ), table(), TQ_SLOT( doValueChanged() ) ); cb->insertItem( "Yes" ); cb->insertItem( "No" ); // and initialize it @@ -373,7 +373,7 @@ a TQLineEdit you will need to reimplement this fu { // the user changed the value of the combobox, so synchronize the // value of the item (its text), with the value of the combobox - if ( w->inherits( "TQComboBox" ) ) + if ( w->inherits( "TQComboBox" ) ) setText( ( (TQComboBox*)w )->currentText() ); else TQTableItem::setContentFromEditor( w ); -- cgit v1.2.1