summaryrefslogtreecommitdiffstats
path: root/doc/porting3.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-27 21:53:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-29 13:21:04 +0900
commit2cbcca0db1343e1c40e52af729a5eb34ca8a7e37 (patch)
tree065c9e97d5bd9eb3d9869427b44acdd571ba0cc1 /doc/porting3.doc
parenta09a6bc05e3f64c27e7c84dd768c7720fdf41136 (diff)
downloadtqt3-2cbcca0db1343e1c40e52af729a5eb34ca8a7e37.tar.gz
tqt3-2cbcca0db1343e1c40e52af729a5eb34ca8a7e37.zip
Rename date and time nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/porting3.doc')
-rw-r--r--doc/porting3.doc20
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.