diff options
Diffstat (limited to 'doc/html/qtableitem.html')
-rw-r--r-- | doc/html/qtableitem.html | 8 |
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>()->viewport() ); - hbox-><a href="ntqwidget.html#setFocusProxy">setFocusProxy</a>(new <a href="ntqlineedit.html">TQLineEdit</a>( hbox )); + hbox-><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> * <a name="createEditor"></a>TQTableItem::createEditor () const<tt> [virtual]</tt> +<h3 class=fn><a href="tqwidget.html">TQWidget</a> * <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> * w )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setContentFromEditor"></a>TQTableItem::setContentFromEditor ( <a href="tqwidget.html">TQWidget</a> * 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 |