summaryrefslogtreecommitdiffstats
path: root/doc/html/lineedits-example.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/lineedits-example.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/lineedits-example.html')
-rw-r--r--doc/html/lineedits-example.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/lineedits-example.html b/doc/html/lineedits-example.html
index d2f5b743..be92b16c 100644
--- a/doc/html/lineedits-example.html
+++ b/doc/html/lineedits-example.html
@@ -60,7 +60,7 @@ class LineEdits : public <a href="ntqgroupbox.html">TQGroupBox</a>
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public:
- LineEdits( <a href="ntqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 );
+ LineEdits( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 );
protected:
<a href="ntqlineedit.html">TQLineEdit</a> *lined1, *lined2, *lined3, *lined4, *lined5;
@@ -105,12 +105,12 @@ protected slots:
* Creates child widgets of the LineEdits widget
*/
-<a name="f219"></a>LineEdits::LineEdits( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name )
+<a name="f219"></a>LineEdits::LineEdits( <a href="tqwidget.html">TQWidget</a> *parent, const char *name )
: <a href="ntqgroupbox.html">TQGroupBox</a>( 0, Horizontal, "Line edits", parent, name )
{
<a href="ntqframe.html#setMargin">setMargin</a>( 10 );
- <a href="qvboxlayout.html">TQVBoxLayout</a>* box = new <a href="qvboxlayout.html">TQVBoxLayout</a>( <a href="ntqwidget.html#layout">layout</a>() );
+ <a href="qvboxlayout.html">TQVBoxLayout</a>* box = new <a href="qvboxlayout.html">TQVBoxLayout</a>( <a href="tqwidget.html#layout">layout</a>() );
<a href="qhboxlayout.html">TQHBoxLayout</a> *row1 = new <a href="qhboxlayout.html">TQHBoxLayout</a>( box );
<a name="x173"></a> row1-&gt;<a href="ntqlayout.html#setMargin">setMargin</a>( 5 );
@@ -219,7 +219,7 @@ protected slots:
box-&gt;<a href="qboxlayout.html#addWidget">addWidget</a>( lined5 );
// give the first LineEdit the focus at the beginning
-<a name="x181"></a> lined1-&gt;<a href="ntqwidget.html#setFocus">setFocus</a>();
+<a name="x181"></a> lined1-&gt;<a href="tqwidget.html#setFocus">setFocus</a>();
}
/*
@@ -244,7 +244,7 @@ void <a name="f220"></a>LineEdits::slotEchoChanged( int i )
break;
}
- lined1-&gt;<a href="ntqwidget.html#setFocus">setFocus</a>();
+ lined1-&gt;<a href="tqwidget.html#setFocus">setFocus</a>();
}
/*
@@ -273,7 +273,7 @@ void <a name="f221"></a>LineEdits::slotValidatorChanged( int i )
}
<a name="x179"></a> lined2-&gt;<a href="ntqlineedit.html#setText">setText</a>( "" );
- lined2-&gt;<a href="ntqwidget.html#setFocus">setFocus</a>();
+ lined2-&gt;<a href="tqwidget.html#setFocus">setFocus</a>();
}
@@ -299,7 +299,7 @@ void <a name="f222"></a>LineEdits::slotAlignmentChanged( int i )
break;
}
- lined3-&gt;<a href="ntqwidget.html#setFocus">setFocus</a>();
+ lined3-&gt;<a href="tqwidget.html#setFocus">setFocus</a>();
}
/*
@@ -328,7 +328,7 @@ void <a name="f223"></a>LineEdits::slotInputMaskChanged( int i )
lined4-&gt;<a href="ntqlineedit.html#setInputMask">setInputMask</a>( "&gt;AAAAA-AAAAA-AAAAA-AAAAA-AAAAA;#" );
break;
}
- lined4-&gt;<a href="ntqwidget.html#setFocus">setFocus</a>();
+ lined4-&gt;<a href="tqwidget.html#setFocus">setFocus</a>();
}
/*
@@ -349,7 +349,7 @@ void <a name="f224"></a>LineEdits::slotReadOnlyChanged( int i )
break;
}
- lined5-&gt;<a href="ntqwidget.html#setFocus">setFocus</a>();
+ lined5-&gt;<a href="tqwidget.html#setFocus">setFocus</a>();
}
</pre>
@@ -374,9 +374,9 @@ int main( int argc, char **argv )
<a href="ntqapplication.html">TQApplication</a> a( argc, argv );
LineEdits lineedits;
- lineedits.<a href="ntqwidget.html#setCaption">setCaption</a>( "TQt Example - Lineedits" );
+ lineedits.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Lineedits" );
a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;lineedits );
- lineedits.<a href="ntqwidget.html#show">show</a>();
+ lineedits.<a href="tqwidget.html#show">show</a>();
return a.<a href="ntqapplication.html#exec">exec</a>();
}