diff options
Diffstat (limited to 'libkdeedu/extdate/extcalendarsystem.h')
-rw-r--r-- | libkdeedu/extdate/extcalendarsystem.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libkdeedu/extdate/extcalendarsystem.h b/libkdeedu/extdate/extcalendarsystem.h index be7ba336..4607fc1d 100644 --- a/libkdeedu/extdate/extcalendarsystem.h +++ b/libkdeedu/extdate/extcalendarsystem.h @@ -79,7 +79,7 @@ public: * Converts a year literal of a part of a string into a integer starting at the beginning of the string * * @param sNum The string to parse - * @param iLength The number of QChars used, and 0 if no valid symbols was found in the string + * @param iLength The number of TQChars used, and 0 if no valid symbols was found in the string * @return An integer corresponding to the year */ virtual int yearStringToInteger(const TQString & sNum, int & iLength) const; @@ -105,7 +105,7 @@ public: * Converts a month literal of a part of a string into a integer starting at the beginning of the string * * @param sNum The string to parse - * @param iLength The number of QChars used, and 0 if no valid symbols was found in the string + * @param iLength The number of TQChars used, and 0 if no valid symbols was found in the string * @return An integer corresponding to the month */ virtual int monthStringToInteger(const TQString & sNum, int & iLength) const; @@ -131,7 +131,7 @@ public: * Converts a day literal of a part of a string into a integer starting at the beginning of the string * * @param sNum The string to parse - * @param iLength The number of QChars used, and 0 if no valid symbols was found in the string + * @param iLength The number of TQChars used, and 0 if no valid symbols was found in the string * @return An integer corresponding to the day */ virtual int dayStringToInteger(const TQString & sNum, int & iLength) const; @@ -235,7 +235,7 @@ public: /** * Gets specific calendar type month name for a given month number - * If an invalid month is specified, TQString::null is returned. + * If an invalid month is specified, TQString() is returned. * * @param month The month number * @param year The year the month belongs to @@ -257,7 +257,7 @@ public: * Returns a string containing the possessive form of the month name. * ("of January", "of February", etc.) * It's needed in long format dates in some languages. - * If an invalid month is specified, TQString::null is returned. + * If an invalid month is specified, TQString() is returned. * * @param month The month number * @param year The year the month belongs to @@ -281,7 +281,7 @@ public: /** * Gets specific calendar type week day name - * If an invalid week day is specified, TQString::null is returned. + * If an invalid week day is specified, TQString() is returned. * * @param weekDay number of day in week (1 -> Monday) * @param shortName short or complete day name |