summaryrefslogtreecommitdiffstats
path: root/doc/html/porting.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-29 12:43:23 +0900
commitfef846914f8db6dc117e206ef913d519bf6bb33e (patch)
treed6567b31f7f22d0c8c66eec947dff1960efa25ac /doc/html/porting.html
parent8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff)
downloadtqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.tar.gz
tqt3-fef846914f8db6dc117e206ef913d519bf6bb33e.zip
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/porting.html')
-rw-r--r--doc/html/porting.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/porting.html b/doc/html/porting.html
index d3b57cb4..6f431969 100644
--- a/doc/html/porting.html
+++ b/doc/html/porting.html
@@ -308,8 +308,8 @@ new code.
<li> <a href="tqcanvaspixmaparray.html#TQCanvasPixmapArray">TQCanvasPixmapArray::TQCanvasPixmapArray</a>( <a href="tqptrlist.html">TQPtrList</a>&lt;TQPixmap&gt; list, TQPtrList&lt;TQPoint&gt; hotspots )
<li> <a href="tqcanvaspixmaparray.html#operator!">TQCanvasPixmapArray::operator!</a>()
<li> <a href="tqcolorgroup.html#TQColorGroup">TQColorGroup::TQColorGroup</a>( const <a href="tqcolor.html">TQColor</a> &amp; foreground, const TQColor &amp; background, const TQColor &amp; light, const TQColor &amp; dark, const TQColor &amp; mid, const TQColor &amp; text, const TQColor &amp; base )
-<li> <a href="ntqcombobox.html#autoResize">TQComboBox::autoResize</a>() const
-<li> <a href="ntqcombobox.html#setAutoResize">TQComboBox::setAutoResize</a>( bool )
+<li> <a href="tqcombobox.html#autoResize">TQComboBox::autoResize</a>() const
+<li> <a href="tqcombobox.html#setAutoResize">TQComboBox::setAutoResize</a>( bool )
<li> <a href="tqdate.html#dayName">TQDate::dayName</a>( int weekday )
<li> <a href="tqdate.html#monthName">TQDate::monthName</a>( int month )
<li> <a href="tqdir.html#encodedEntryList">TQDir::encodedEntryList</a>( const <a href="tqstring.html">TQString</a> &amp; nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const
@@ -362,8 +362,8 @@ new code.
<li> <a href="ntqmessagebox.html#query">TQMessageBox::query</a>( const TQString &amp; caption, const TQString &amp; text, const TQString &amp; yesButtonText = TQString::null, const TQString &amp; noButtonText = TQString::null, TQWidget *parent = 0, const char *= 0 )
<li> <a href="ntqmessagebox.html#standardIcon">TQMessageBox::standardIcon</a>( Icon icon, GUIStyle style )
<li> <a href="tqregexp.html#match">TQRegExp::match</a>( const TQString &amp; str, int index = 0, int *len = 0, bool indexIsStart = TRUE ) const
-<li> <a href="ntqscrollview.html#childIsVisible">TQScrollView::childIsVisible</a>( TQWidget *child )
-<li> <a href="ntqscrollview.html#showChild">TQScrollView::showChild</a>( TQWidget *child, bool show = TRUE )
+<li> <a href="tqscrollview.html#childIsVisible">TQScrollView::childIsVisible</a>( TQWidget *child )
+<li> <a href="tqscrollview.html#showChild">TQScrollView::showChild</a>( TQWidget *child, bool show = TRUE )
<li> <a href="tqsimplerichtext.html#draw">TQSimpleRichText::draw</a>( <a href="tqpainter.html">TQPainter</a> *p, int x, int y, const <a href="tqregion.html">TQRegion</a> &amp; clipRegion, const <a href="tqcolorgroup.html">TQColorGroup</a> &amp; cg, const <a href="tqbrush.html">TQBrush</a> *paper = 0 ) const
<li> <a href="tqstring.html#ascii">TQString::ascii</a>() const
<li> <a href="tqstring.html#data">TQString::data</a>() const
@@ -427,9 +427,9 @@ names are no longer avaialable.
<p> <h2> <a href="ntqbuttongroup.html">TQButtonGroup</a>
</h2>
<a name="7"></a><p> In TQt 2.x, the function <a href="ntqbuttongroup.html#selected">TQButtonGroup::selected</a>() returns the selected
-<em>radio</em> button (<a href="ntqradiobutton.html">TQRadioButton</a>). In TQt 3.0, it returns the selected <em>toggle</em> button (<a href="ntqbutton.html#toggleButton-prop">TQButton::toggleButton</a>), a more general concept.
+<em>radio</em> button (<a href="tqradiobutton.html">TQRadioButton</a>). In TQt 3.0, it returns the selected <em>toggle</em> button (<a href="ntqbutton.html#toggleButton-prop">TQButton::toggleButton</a>), a more general concept.
This might affect programs that use TQButtonGroups that contain a
-mixture of radio buttons and non-radio (e.g. <a href="ntqcheckbox.html">TQCheckBox</a>) toggle buttons.
+mixture of radio buttons and non-radio (e.g. <a href="tqcheckbox.html">TQCheckBox</a>) toggle buttons.
<p> <h2> <a href="tqdate.html">TQDate</a>
</h2>
<a name="8"></a><p> Two TQDate member functions that were virtual in TQt 2.0 are not virtual
@@ -764,7 +764,7 @@ transparent-looking widget. In general, this approach is slow and
processor hungry. TQt 3.0 uses the BackgroundOrigin which provides
vastly improved performance and more flexibility in most cases. The
few classes for which the AutoMask property is still the best approach
-are <a href="ntqcheckbox.html">TQCheckBox</a>, <a href="ntqcombobox.html">TQComboBox</a>, <a href="ntqpushbutton.html">TQPushButton</a>, <a href="ntqradiobutton.html">TQRadioButton</a> and <a href="ntqtabwidget.html">TQTabWidget</a>.
+are <a href="tqcheckbox.html">TQCheckBox</a>, <a href="tqcombobox.html">TQComboBox</a>, <a href="tqpushbutton.html">TQPushButton</a>, <a href="tqradiobutton.html">TQRadioButton</a> and <a href="ntqtabwidget.html">TQTabWidget</a>.
<p> <h2> Bezier Curves
</h2>
<a name="28"></a><p> The function names for Bezier curves in <a href="tqpainter.html">TQPainter</a> and <a href="tqpointarray.html">TQPointArray</a> have