diff options
Diffstat (limited to 'doc/porting3.doc')
-rw-r--r-- | doc/porting3.doc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/porting3.doc b/doc/porting3.doc index e228e5380..00437af95 100644 --- a/doc/porting3.doc +++ b/doc/porting3.doc @@ -224,9 +224,9 @@ All these functions have been removed in TQt 3.x: \i QToolButton::iconSet(bool on) const \i QToolButton::offIconSet() const \i QToolButton::onIconSet() const -\i QToolButton::setIconSet(const QIconSet \&set, bool on) -\i QToolButton::setOffIconSet(const QIconSet \&) -\i QToolButton::setOnIconSet(const QIconSet \&) +\i QToolButton::setIconSet(const TQIconSet \&set, bool on) +\i QToolButton::setOffIconSet(const TQIconSet \&) +\i QToolButton::setOnIconSet(const TQIconSet \&) \i TQWidget::setFontPropagation() \i TQWidget::setPalettePropagation() \endlist @@ -658,21 +658,21 @@ QtTableView throughout. \section1 QToolButton The \l QToolButton class used to distinguish between "on" and "off" -icons. In 3.0, this mechanism was moved into the \l QIconSet class -(see \l QIconSet::State). The two TQToolButton::onIconSet and +icons. In 3.0, this mechanism was moved into the \l TQIconSet class +(see \l TQIconSet::State). The two TQToolButton::onIconSet and TQToolButton::offIconSet properties have been removed, together with the following two functions as well. \list -\i void QToolButton::setIconSet ( const QIconSet \& set, bool on ) -\i QIconSet QToolButton::iconSet ( bool on ) const +\i void QToolButton::setIconSet ( const TQIconSet \& set, bool on ) +\i TQIconSet QToolButton::iconSet ( bool on ) const \endlist New code should use the following functions instead: \list -\i void QToolButton::setIconSet( const QIconSet \& set ) -\i QIconSet QToolButton::iconSet() const +\i void QToolButton::setIconSet( const TQIconSet \& set ) +\i TQIconSet QToolButton::iconSet() const \endlist \section1 TQTextStream @@ -786,7 +786,7 @@ replace these calls with \endlist respectively. Neither the arguments nor the resulting curve have changed. -\section1 Locale-aware String Comparisons in QIconView, QListBox, +\section1 Locale-aware String Comparisons in TQIconView, QListBox, QListView and QTable In TQt 2.x, TQString only provided string comparisons using the Unicode @@ -796,11 +796,11 @@ French users expect 'é' (e acute) to be treated essentially as 'e' and not put after 'z'. In TQt 3.0, TQString::localeAwareCompare() implements locale aware -string comparisions on certain platforms. The classes \l QIconView, \l +string comparisions on certain platforms. The classes \l TQIconView, \l QListBox, \l QListView and \l QTable now use TQString::localeAwareCompare() instead of TQString::compare(). If you want to control the behaviour yourself you can always reimplement -QIconViewItem::compare(), QListBox::text(), QListViewItem::compare() +TQIconViewItem::compare(), QListBox::text(), QListViewItem::compare() or QTableItem::key() as appropriate. */ |