diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-23 14:04:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-27 16:08:54 +0900 |
commit | 04913ce7a46fd027856e83a96205fdc388742a19 (patch) | |
tree | a04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/qtableitem.html | |
parent | c11c0f228b65f7471a26513ef8dbde413e75f8fa (diff) | |
download | tqt3-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/qtableitem.html')
-rw-r--r-- | doc/html/qtableitem.html | 4 |
1 files changed, 2 insertions, 2 deletions
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 <a href="#setContentFromEditor">setContentFromEditor</a>(), and may { // create an editor - a combobox in our case ( (ComboItem*)this )->cb = new <a href="ntqcombobox.html">TQComboBox</a>( <a href="#table">table</a>()->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->insertItem( "Yes" ); cb->insertItem( "No" ); // and initialize it @@ -373,7 +373,7 @@ a <a href="ntqlineedit.html">TQLineEdit</a> 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-><a href="ntqobject.html#inherits">inherits</a>( "TQComboBox" ) ) + if ( w-><a href="tqobject.html#inherits">inherits</a>( "TQComboBox" ) ) <a href="#setText">setText</a>( ( (TQComboBox*)w )->currentText() ); else TQTableItem::<a href="#setContentFromEditor">setContentFromEditor</a>( w ); |