diff options
Diffstat (limited to 'doc/porting3.doc')
-rw-r--r-- | doc/porting3.doc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/porting3.doc b/doc/porting3.doc index 7e7179f0a..9afb769df 100644 --- a/doc/porting3.doc +++ b/doc/porting3.doc @@ -263,8 +263,8 @@ new code. \i QColorGroup::QColorGroup( const TQColor \& foreground, const TQColor \& background, const TQColor \& light, const TQColor \& dark, const TQColor \& mid, const TQColor \& text, const TQColor \& base ) \i QComboBox::autoResize() const \i QComboBox::setAutoResize( bool ) -\i QDate::dayName( int weekday ) -\i QDate::monthName( int month ) +\i TQDate::dayName( int weekday ) +\i TQDate::monthName( int month ) \i QDir::encodedEntryList( const TQString \& nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const \i QDir::encodedEntryList( int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const \i QDockWindow::isHorizontalStretchable() const @@ -391,20 +391,20 @@ toggle button (\l QButton::toggleButton), a more general concept. This might affect programs that use QButtonGroups that contain a mixture of radio buttons and non-radio (e.g. QCheckBox) toggle buttons. -\section1 QDate +\section1 TQDate -Two QDate member functions that were virtual in TQt 2.0 are not virtual -in TQt 3.0. This is only relevant if you subclassed QDate and +Two TQDate member functions that were virtual in TQt 2.0 are not virtual +in TQt 3.0. This is only relevant if you subclassed TQDate and reimplemented these functions: \list -\i TQString QDate::monthName( int month ) const -\i TQString QDate::dayName( int weekday ) const +\i TQString TQDate::monthName( int month ) const +\i TQString TQDate::dayName( int weekday ) const \endlist -In addition to no longer being virtual, QDate::monthName() and -QDate::dayName() have been renamed QDate::shortMonthName() and -QDate::shortDayName() and have been made static (as they should had +In addition to no longer being virtual, TQDate::monthName() and +TQDate::dayName() have been renamed TQDate::shortMonthName() and +TQDate::shortDayName() and have been made static (as they should had been in the first place). The old names are still provided for source compatibility. |