diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/designer-manual-4.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-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/designer-manual-4.html')
-rw-r--r-- | doc/html/designer-manual-4.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/designer-manual-4.html b/doc/html/designer-manual-4.html index 9eeda54e7..2f50a2451 100644 --- a/doc/html/designer-manual-4.html +++ b/doc/html/designer-manual-4.html @@ -163,8 +163,8 @@ body { background: #ffffff; color: black; } { <a href="ntqcolor.html">TQColor</a> color = white; if ( ! m_colors.isEmpty() ) { - <a href="ntqwidget.html">TQWidget</a> *visible = colorWidgetStack->visibleWidget(); - if ( <a href="ntqwidget.html#visible-prop">visible</a> == tablePage ) + <a href="tqwidget.html">TQWidget</a> *visible = colorWidgetStack->visibleWidget(); + if ( <a href="tqwidget.html#visible-prop">visible</a> == tablePage ) color = colorTable->text( colorTable->currentRow(), colorTable->currentColumn() ); else @@ -284,10 +284,10 @@ body { background: #ffffff; color: black; } if ( text.<a href="ntqstring.html#isEmpty">isEmpty</a>() ) return; <a href="ntqstring.html">TQString</a> ltext = text.<a href="ntqstring.html#lower">lower</a>(); - <a href="ntqwidget.html">TQWidget</a> *visible = colorWidgetStack->visibleWidget(); + <a href="tqwidget.html">TQWidget</a> *visible = colorWidgetStack->visibleWidget(); bool found = FALSE; - if ( <a href="ntqwidget.html#visible-prop">visible</a> == tablePage && colorTable->numRows() ) { + if ( <a href="tqwidget.html#visible-prop">visible</a> == tablePage && colorTable->numRows() ) { int row = colorTable->currentRow(); for ( int i = row + 1; i < colorTable->numRows(); ++i ) if ( colorTable->text( i, 0 ).lower().contains( ltext ) ) { @@ -301,7 +301,7 @@ body { background: #ffffff; color: black; } colorTable->setCurrentCell( row, 0 ); } - else if ( <a href="ntqwidget.html#visible-prop">visible</a> == iconsPage ) { + else if ( <a href="tqwidget.html#visible-prop">visible</a> == iconsPage ) { <a href="qiconviewitem.html">TQIconViewItem</a> *start = colorIconView->currentItem(); for ( <a href="qiconviewitem.html">TQIconViewItem</a> *item = start-><a href="qiconviewitem.html#nextItem">nextItem</a>(); item; item = item-><a href="qiconviewitem.html#nextItem">nextItem</a>() ) if ( item-><a href="qtableitem.html#text">text</a>().lower().contains( ltext ) ) { |