summaryrefslogtreecommitdiffstats
path: root/libkdeedu/extdate/extcalendarsystemgregorian.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
commit0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch)
tree2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /libkdeedu/extdate/extcalendarsystemgregorian.cpp
parent83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff)
downloadtdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz
tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkdeedu/extdate/extcalendarsystemgregorian.cpp')
-rw-r--r--libkdeedu/extdate/extcalendarsystemgregorian.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/libkdeedu/extdate/extcalendarsystemgregorian.cpp b/libkdeedu/extdate/extcalendarsystemgregorian.cpp
index d358f595..47338f4b 100644
--- a/libkdeedu/extdate/extcalendarsystemgregorian.cpp
+++ b/libkdeedu/extdate/extcalendarsystemgregorian.cpp
@@ -4,7 +4,7 @@
Copyright (c) 2004 Jason Harris <jharris@30doradus.org>
This class has been derived from KCalendarSystemGregorian;
- the changesd made just replace QDate objects with ExtDate objects.
+ the changesd made just replace TQDate objects with ExtDate objects.
These changes by Jason Harris <jharris@30doradus.org>
This library is free software; you can redistribute it and/or
@@ -72,18 +72,18 @@ int ExtCalendarSystemGregorian::weekNumber(const ExtDate& date,
return date.weekNumber(yearNum);
}
-QString ExtCalendarSystemGregorian::monthName(const ExtDate& date,
+TQString ExtCalendarSystemGregorian::monthName(const ExtDate& date,
bool shortName) const
{
return monthName(month(date), year(date), shortName);
}
-QString ExtCalendarSystemGregorian::monthNamePossessive(const ExtDate& date, bool shortName) const
+TQString ExtCalendarSystemGregorian::monthNamePossessive(const ExtDate& date, bool shortName) const
{
return monthNamePossessive(month(date), year(date), shortName);
}
-QString ExtCalendarSystemGregorian::monthName(int month, int year, bool shortName) const
+TQString ExtCalendarSystemGregorian::monthName(int month, int year, bool shortName) const
{
Q_UNUSED(year);
@@ -144,10 +144,10 @@ QString ExtCalendarSystemGregorian::monthName(int month, int year, bool shortNam
return locale()->translate("December");
}
- return QString::null;
+ return TQString::null;
}
-QString ExtCalendarSystemGregorian::monthNamePossessive(int month, int year,
+TQString ExtCalendarSystemGregorian::monthNamePossessive(int month, int year,
bool shortName) const
{
Q_UNUSED(year);
@@ -209,7 +209,7 @@ QString ExtCalendarSystemGregorian::monthNamePossessive(int month, int year,
return locale()->translate("of December");
}
- return QString::null;
+ return TQString::null;
}
bool ExtCalendarSystemGregorian::setYMD(ExtDate & date, int y, int m, int d) const
@@ -233,7 +233,7 @@ ExtDate ExtCalendarSystemGregorian::addDays(const ExtDate & date, int ndays) con
return date.addDays(ndays);
}
-QString ExtCalendarSystemGregorian::weekDayName(int col, bool shortName) const
+TQString ExtCalendarSystemGregorian::weekDayName(int col, bool shortName) const
{
// ### Should this really be different to each calendar system? Or are we
// only going to support weeks with 7 days?
@@ -241,7 +241,7 @@ QString ExtCalendarSystemGregorian::weekDayName(int col, bool shortName) const
return ExtCalendarSystem::weekDayName(col, shortName);
}
-QString ExtCalendarSystemGregorian::weekDayName(const ExtDate& date, bool shortName) const
+TQString ExtCalendarSystemGregorian::weekDayName(const ExtDate& date, bool shortName) const
{
return weekDayName(dayOfWeek(date), shortName);
}
@@ -292,9 +292,9 @@ int ExtCalendarSystemGregorian::weekDayOfPray() const
return 7; // sunday
}
-QString ExtCalendarSystemGregorian::calendarName() const
+TQString ExtCalendarSystemGregorian::calendarName() const
{
- return QString::fromLatin1("gregorian");
+ return TQString::fromLatin1("gregorian");
}
bool ExtCalendarSystemGregorian::isLunar() const
@@ -312,7 +312,7 @@ bool ExtCalendarSystemGregorian::isSolar() const
return true;
}
-int ExtCalendarSystemGregorian::yearStringToInteger(const QString & sNum, int & iLength) const
+int ExtCalendarSystemGregorian::yearStringToInteger(const TQString & sNum, int & iLength) const
{
int iYear;
iYear = ExtCalendarSystem::yearStringToInteger(sNum, iLength);