summaryrefslogtreecommitdiffstats
path: root/doc/html/qtableitem.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:07:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/qtableitem.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz
tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qtableitem.html')
-rw-r--r--doc/html/qtableitem.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/qtableitem.html b/doc/html/qtableitem.html
index 476884cdc..ac622a271 100644
--- a/doc/html/qtableitem.html
+++ b/doc/html/qtableitem.html
@@ -132,7 +132,7 @@ accept the keyboard focus:
TQWidget* MyTableItem::createEditor() const
{
<a href="ntqhbox.html">TQHBox</a>* hbox = new <a href="ntqhbox.html">TQHBox</a>( <a href="#table">table</a>()-&gt;viewport() );
- hbox-&gt;<a href="ntqwidget.html#setFocusProxy">setFocusProxy</a>(new <a href="ntqlineedit.html">TQLineEdit</a>( hbox ));
+ hbox-&gt;<a href="tqwidget.html#setFocusProxy">setFocusProxy</a>(new <a href="ntqlineedit.html">TQLineEdit</a>( hbox ));
new <a href="ntqlineedit.html">TQLineEdit</a>( hbox );
return hbox;
}
@@ -246,7 +246,7 @@ column.
Returns the column span of the table item, usually 1.
<p> <p>See also <a href="#setSpan">setSpan</a>() and <a href="#rowSpan">rowSpan</a>().
-<h3 class=fn><a href="ntqwidget.html">TQWidget</a>&nbsp;* <a name="createEditor"></a>TQTableItem::createEditor () const<tt> [virtual]</tt>
+<h3 class=fn><a href="tqwidget.html">TQWidget</a>&nbsp;* <a name="createEditor"></a>TQTableItem::createEditor () const<tt> [virtual]</tt>
</h3>
This virtual function creates an editor which the user can
interact with to edit the cell's contents. The default
@@ -360,7 +360,7 @@ left-most column and retains the width of the multi-cell table
item.
<p> <p>See also <a href="#col">col</a>(), <a href="#setRow">setRow</a>(), and <a href="#colSpan">colSpan</a>().
-<h3 class=fn>void <a name="setContentFromEditor"></a>TQTableItem::setContentFromEditor ( <a href="ntqwidget.html">TQWidget</a>&nbsp;*&nbsp;w )<tt> [virtual]</tt>
+<h3 class=fn>void <a name="setContentFromEditor"></a>TQTableItem::setContentFromEditor ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;w )<tt> [virtual]</tt>
</h3>
Whenever the content of a cell has been edited by the editor <em>w</em>,
<a href="ntqtable.html">TQTable</a> calls this virtual function to copy the new values into the
@@ -369,7 +369,7 @@ TQTableItem.
a <a href="ntqlineedit.html">TQLineEdit</a> you will need to reimplement this function.
<p>
-<pre> void ComboItem::<a href="#setContentFromEditor">setContentFromEditor</a>( <a href="ntqwidget.html">TQWidget</a> *w )
+<pre> void ComboItem::<a href="#setContentFromEditor">setContentFromEditor</a>( <a href="tqwidget.html">TQWidget</a> *w )
{
// the user changed the value of the combobox, so synchronize the
// value of the item (its text), with the value of the combobox