summaryrefslogtreecommitdiffstats
path: root/doc/html/tqtableitem.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-08-16 19:11:00 +0900
committerMichele Calgaro <[email protected]>2024-08-16 19:11:00 +0900
commit82ecd83484c9fa1ede059986ab771e74e33e68ef (patch)
treed0e76f19632bb02fc55028625bdb903902e1bac1 /doc/html/tqtableitem.html
parentc55ef27a2c511c29a8a82d00bd2ede1fb02cfa41 (diff)
downloadtqt3-82ecd83484c9fa1ede059986ab771e74e33e68ef.tar.gz
tqt3-82ecd83484c9fa1ede059986ab771e74e33e68ef.zip
Rename layout nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/tqtableitem.html')
-rw-r--r--doc/html/tqtableitem.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/tqtableitem.html b/doc/html/tqtableitem.html
index 0d923ee97..e1a3aace7 100644
--- a/doc/html/tqtableitem.html
+++ b/doc/html/tqtableitem.html
@@ -126,12 +126,12 @@ content.
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
-<a href="ntqhbox.html">TQHBox</a> with two child TQLineEdit widgets may use one of them to
+<a href="tqhbox.html">TQHBox</a> with two child TQLineEdit widgets may use one of them to
accept the keyboard focus:
<p> <pre>
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() );
+ <a href="tqhbox.html">TQHBox</a>* hbox = new <a href="tqhbox.html">TQHBox</a>( <a href="#table">table</a>()-&gt;viewport() );
hbox-&gt;<a href="tqwidget.html#setFocusProxy">setFocusProxy</a>(new <a href="tqlineedit.html">TQLineEdit</a>( hbox ));
new <a href="tqlineedit.html">TQLineEdit</a>( hbox );
return hbox;