diff options
Diffstat (limited to 'doc/html/porting.html')
-rw-r--r-- | doc/html/porting.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/porting.html b/doc/html/porting.html index 4a486675e..61fe249fd 100644 --- a/doc/html/porting.html +++ b/doc/html/porting.html @@ -663,8 +663,8 @@ TQtTableView throughout. <p> <h2> <a href="ntqtoolbutton.html">TQToolButton</a> </h2> <a name="21"></a><p> The <a href="ntqtoolbutton.html">TQToolButton</a> class used to distinguish between "on" and "off" -icons. In 3.0, this mechanism was moved into the <a href="ntqiconset.html">TQIconSet</a> class -(see <a href="ntqiconset.html#State-enum">TQIconSet::State</a>). +icons. In 3.0, this mechanism was moved into the <a href="tqiconset.html">TQIconSet</a> class +(see <a href="tqiconset.html#State-enum">TQIconSet::State</a>). <p> The two TQToolButton::onIconSet and TQToolButton::offIconSet properties have been removed, together with the following two functions as well. <p> <ul> @@ -777,7 +777,7 @@ replace these calls with <li> TQPointArray <a href="ntqpointarray.html#cubicBezier">TQPointArray::cubicBezier</a>() const </ul> respectively. Neither the arguments nor the resulting curve have changed. -<p> <h2> Locale-aware String Comparisons in <a href="ntqiconview.html">TQIconView</a>, <a href="ntqlistbox.html">TQListBox</a>, +<p> <h2> Locale-aware String Comparisons in <a href="tqiconview.html">TQIconView</a>, <a href="ntqlistbox.html">TQListBox</a>, <a href="ntqlistview.html">TQListView</a> and <a href="ntqtable.html">TQTable</a> </h2> <a name="29"></a><p> In TQt 2.x, <a href="tqstring.html">TQString</a> only provided string comparisons using the Unicode @@ -786,10 +786,10 @@ but it is not the appropriate order for most languages. For example, French users expect 'é' (e acute) to be treated essentially as 'e' and not put after 'z'. <p> In TQt 3.0, <a href="tqstring.html#localeAwareCompare">TQString::localeAwareCompare</a>() implements locale aware -string comparisions on certain platforms. The classes <a href="ntqiconview.html">TQIconView</a>, <a href="ntqlistbox.html">TQListBox</a>, <a href="ntqlistview.html">TQListView</a> and <a href="ntqtable.html">TQTable</a> now use +string comparisions on certain platforms. The classes <a href="tqiconview.html">TQIconView</a>, <a href="ntqlistbox.html">TQListBox</a>, <a href="ntqlistview.html">TQListView</a> and <a href="ntqtable.html">TQTable</a> now use TQString::localeAwareCompare() instead of <a href="tqstring.html#compare">TQString::compare</a>(). If you want to control the behaviour yourself you can always reimplement -<a href="qiconviewitem.html#compare">TQIconViewItem::compare</a>(), <a href="ntqlistbox.html#text">TQListBox::text</a>(), <a href="qlistviewitem.html#compare">TQListViewItem::compare</a>() +<a href="tqiconviewitem.html#compare">TQIconViewItem::compare</a>(), <a href="ntqlistbox.html#text">TQListBox::text</a>(), <a href="qlistviewitem.html#compare">TQListViewItem::compare</a>() or <a href="qtableitem.html#key">TQTableItem::key</a>() as appropriate. <p> <!-- eof --> |