diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-11 04:44:41 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-11 04:44:41 +0000 |
commit | a374efce3a207b39514be3c52264091400ce297e (patch) | |
tree | 77bdf654b55826d4f59b53a5621310206bcaead1 /libkdeedu/extdate/extcalendarsystem.h | |
parent | f81a494f3957d5cf38c787973415597941934727 (diff) | |
download | tdeedu-a374efce3a207b39514be3c52264091400ce297e.tar.gz tdeedu-a374efce3a207b39514be3c52264091400ce297e.zip |
TQt4 port kdeedu
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1236073 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 |