diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:42:20 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:42:20 +0900 |
commit | b35e0845dc9b3c8b9a5e52a682c769f383933fae (patch) | |
tree | e4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqdate.3qt | |
parent | 1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff) | |
download | tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqdate.3qt')
-rw-r--r-- | doc/man/man3/tqdate.3qt | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/doc/man/man3/tqdate.3qt b/doc/man/man3/tqdate.3qt index 509c6caef..baebf2442 100644 --- a/doc/man/man3/tqdate.3qt +++ b/doc/man/man3/tqdate.3qt @@ -52,10 +52,10 @@ All the functions in this class are reentrant when TQt is built with thread supp .BI "int \fBweekNumber\fR ( int * yearNumber = 0 ) const" .br .ti -1c -.BI "QString \fBtoString\fR ( Qt::DateFormat f = Qt::TextDate ) const" +.BI "TQString \fBtoString\fR ( Qt::DateFormat f = Qt::TextDate ) const" .br .ti -1c -.BI "QString \fBtoString\fR ( const QString & format ) const" +.BI "TQString \fBtoString\fR ( const TQString & format ) const" .br .ti -1c .BI "bool \fBsetYMD\fR ( int y, int m, int d )" @@ -94,22 +94,22 @@ All the functions in this class are reentrant when TQt is built with thread supp .SS "Static Public Members" .in +1c .ti -1c -.BI "QString monthName ( int month ) \fI(obsolete)\fR" +.BI "TQString monthName ( int month ) \fI(obsolete)\fR" .br .ti -1c -.BI "QString dayName ( int weekday ) \fI(obsolete)\fR" +.BI "TQString dayName ( int weekday ) \fI(obsolete)\fR" .br .ti -1c -.BI "QString \fBshortMonthName\fR ( int month )" +.BI "TQString \fBshortMonthName\fR ( int month )" .br .ti -1c -.BI "QString \fBshortDayName\fR ( int weekday )" +.BI "TQString \fBshortDayName\fR ( int weekday )" .br .ti -1c -.BI "QString \fBlongMonthName\fR ( int month )" +.BI "TQString \fBlongMonthName\fR ( int month )" .br .ti -1c -.BI "QString \fBlongDayName\fR ( int weekday )" +.BI "TQString \fBlongDayName\fR ( int weekday )" .br .ti -1c .BI "QDate \fBcurrentDate\fR ()" @@ -118,7 +118,7 @@ All the functions in this class are reentrant when TQt is built with thread supp .BI "QDate \fBcurrentDate\fR ( Qt::TimeSpec ts )" .br .ti -1c -.BI "QDate \fBfromString\fR ( const QString & s, Qt::DateFormat f = Qt::TextDate )" +.BI "QDate \fBfromString\fR ( const TQString & s, Qt::DateFormat f = Qt::TextDate )" .br .ti -1c .BI "bool \fBisValid\fR ( int y, int m, int d )" @@ -199,7 +199,7 @@ Returns the day of the month (1..31) of this date. See also year(), month(), and dayOfWeek(). .PP Example: dclock/dclock.cpp. -.SH "QString QDate::dayName ( int weekday )\fC [static]\fR" +.SH "TQString QDate::dayName ( int weekday )\fC [static]\fR" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. .PP Use shortDayName() instead. @@ -237,7 +237,7 @@ Example: .fi .PP See also addDays(). -.SH "QDate QDate::fromString ( const QString & s, Qt::DateFormat f = Qt::TextDate )\fC [static]\fR" +.SH "QDate QDate::fromString ( const TQString & s, Qt::DateFormat f = Qt::TextDate )\fC [static]\fR" Returns the QDate represented by the string \fIs\fR, using the format \fIf\fR, or an invalid date if the string cannot be parsed. .PP Note for Qt::TextDate: It is recommended that you use the English short month names (e.g. "Jan"). Although localized month names can also be used, they depend on the user's locale settings. @@ -275,7 +275,7 @@ Example: See also isNull() and setYMD(). .SH "bool QDate::leapYear ( int y )\fC [static]\fR" Returns TRUE if the specified year \fIy\fR is a leap year; otherwise returns FALSE. -.SH "QString QDate::longDayName ( int weekday )\fC [static]\fR" +.SH "TQString QDate::longDayName ( int weekday )\fC [static]\fR" Returns the long name of the \fIweekday\fR. .PP 1 = "Monday", 2 = "Tuesday", ... 7 = "Sunday" @@ -283,7 +283,7 @@ Returns the long name of the \fIweekday\fR. The day names will be localized according to the system's locale settings. .PP See also toString(), shortDayName(), shortMonthName(), and longMonthName(). -.SH "QString QDate::longMonthName ( int month )\fC [static]\fR" +.SH "TQString QDate::longMonthName ( int month )\fC [static]\fR" Returns the long name of the \fImonth\fR. .PP 1 = "January", 2 = "February", ... 12 = "December" @@ -297,7 +297,7 @@ Returns the month (January=1..December=12) of this date. See also year() and day(). .PP Example: dclock/dclock.cpp. -.SH "QString QDate::monthName ( int month )\fC [static]\fR" +.SH "TQString QDate::monthName ( int month )\fC [static]\fR" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. .PP Use shortMonthName() instead. @@ -321,7 +321,7 @@ Sets the date's year \fIy\fR, month \fIm\fR and day \fId\fR. \fBWarning:\fR If \fIy\fR is in the range 0..99, it is interpreted as 1900..1999. .PP Returns TRUE if the date is valid; otherwise returns FALSE. -.SH "QString QDate::shortDayName ( int weekday )\fC [static]\fR" +.SH "TQString QDate::shortDayName ( int weekday )\fC [static]\fR" Returns the name of the \fIweekday\fR. .PP 1 = "Mon", 2 = "Tue", ... 7 = "Sun" @@ -329,7 +329,7 @@ Returns the name of the \fIweekday\fR. The day names will be localized according to the system's locale settings. .PP See also toString(), shortMonthName(), longMonthName(), and longDayName(). -.SH "QString QDate::shortMonthName ( int month )\fC [static]\fR" +.SH "TQString QDate::shortMonthName ( int month )\fC [static]\fR" Returns the name of the \fImonth\fR. .PP 1 = "Jan", 2 = "Feb", ... 12 = "Dec" @@ -337,7 +337,7 @@ Returns the name of the \fImonth\fR. The month names will be localized according to the system's locale settings. .PP See also toString(), longMonthName(), shortDayName(), and longDayName(). -.SH "QString QDate::toString ( const QString & format ) const" +.SH "TQString QDate::toString ( const TQString & format ) const" Returns the date as a string. The \fIformat\fR parameter determines the format of the result string. .PP These expressions may be used: @@ -358,10 +358,10 @@ l - l. Format Result dd.MM.yyyy 20.07.1969 ddd MMMM d yy .fi </center> .PP -If the date is an invalid date, then QString::null will be returned. +If the date is an invalid date, then TQString::null will be returned. .PP See also QDateTime::toString() and QTime::toString(). -.SH "QString QDate::toString ( Qt::DateFormat f = Qt::TextDate ) const" +.SH "TQString QDate::toString ( Qt::DateFormat f = Qt::TextDate ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Returns the date as a string. The \fIf\fR parameter determines the format of the string. @@ -372,7 +372,7 @@ If \fIf\fR is Qt::ISODate, the string format corresponds to the ISO 8601 specifi .PP If \fIf\fR is Qt::LocalDate, the string format depends on the locale settings of the system. .PP -If the date is an invalid date, then QString::null will be returned. +If the date is an invalid date, then TQString::null will be returned. .PP See also shortDayName() and shortMonthName(). .SH "int QDate::weekNumber ( int * yearNumber = 0 ) const" |