summaryrefslogtreecommitdiffstats
path: root/doc/html/designer-manual-4.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:07:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/designer-manual-4.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt3-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.html10
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-&gt;visibleWidget();
- if ( <a href="ntqwidget.html#visible-prop">visible</a> == tablePage )
+ <a href="tqwidget.html">TQWidget</a> *visible = colorWidgetStack-&gt;visibleWidget();
+ if ( <a href="tqwidget.html#visible-prop">visible</a> == tablePage )
color = colorTable-&gt;text( colorTable-&gt;currentRow(),
colorTable-&gt;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-&gt;visibleWidget();
+ <a href="tqwidget.html">TQWidget</a> *visible = colorWidgetStack-&gt;visibleWidget();
bool found = FALSE;
- if ( <a href="ntqwidget.html#visible-prop">visible</a> == tablePage &amp;&amp; colorTable-&gt;numRows() ) {
+ if ( <a href="tqwidget.html#visible-prop">visible</a> == tablePage &amp;&amp; colorTable-&gt;numRows() ) {
int row = colorTable-&gt;currentRow();
for ( int i = row + 1; i &lt; colorTable-&gt;numRows(); ++i )
if ( colorTable-&gt;text( i, 0 ).lower().contains( ltext ) ) {
@@ -301,7 +301,7 @@ body { background: #ffffff; color: black; }
colorTable-&gt;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-&gt;currentItem();
for ( <a href="qiconviewitem.html">TQIconViewItem</a> *item = start-&gt;<a href="qiconviewitem.html#nextItem">nextItem</a>(); item; item = item-&gt;<a href="qiconviewitem.html#nextItem">nextItem</a>() )
if ( item-&gt;<a href="qtableitem.html#text">text</a>().lower().contains( ltext ) ) {