diff options
author | Michele Calgaro <[email protected]> | 2024-08-16 19:11:00 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-08-16 19:11:00 +0900 |
commit | 82ecd83484c9fa1ede059986ab771e74e33e68ef (patch) | |
tree | d0e76f19632bb02fc55028625bdb903902e1bac1 /doc/html/tqtableitem.html | |
parent | c55ef27a2c511c29a8a82d00bd2ede1fb02cfa41 (diff) | |
download | tqt3-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.html | 4 |
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>()->viewport() ); + <a href="tqhbox.html">TQHBox</a>* hbox = new <a href="tqhbox.html">TQHBox</a>( <a href="#table">table</a>()->viewport() ); hbox-><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; |