summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqtableitem.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqtableitem.3qt')
-rw-r--r--doc/man/man3/tqtableitem.3qt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/man3/tqtableitem.3qt b/doc/man/man3/tqtableitem.3qt
index 73fbcdda..4de697f4 100644
--- a/doc/man/man3/tqtableitem.3qt
+++ b/doc/man/man3/tqtableitem.3qt
@@ -150,7 +150,7 @@ Note, that if you have a table item that is not currently in a table then anythi
.PP
Reimplement createEditor() and setContentFromEditor() if you want to use your own widget instead of a TQLineEdit for editing cell contents. Reimplement paint() if you want to display custom content.
.PP
-It is important to ensure that your custom widget can accept the keyboard focus, so that the user can use the tab key to navigate the table as normal. Therefore, if the widget returned by createEditor() does not itself accept the keyboard focus, it is necessary to nominate a child widget to do so on its behalf. For example, a QHBox with two child TQLineEdit widgets may use one of them to accept the keyboard focus:
+It is important to ensure that your custom widget can accept the keyboard focus, so that the user can use the tab key to navigate the table as normal. Therefore, if the widget returned by createEditor() does not itself accept the keyboard focus, it is necessary to nominate a child widget to do so on its behalf. For example, a TQHBox with two child TQLineEdit widgets may use one of them to accept the keyboard focus:
.PP
.nf
.br
@@ -158,7 +158,7 @@ It is important to ensure that your custom widget can accept the keyboard focus,
.br
{
.br
- QHBox* hbox = new QHBox( table()->viewport() );
+ TQHBox* hbox = new TQHBox( table()->viewport() );
.br
hbox->setFocusProxy(new TQLineEdit( hbox ));
.br