Remove the era* internal methods
This commit is contained in:
parent
55ff7f3e0b
commit
fbb91918de
@ -22,12 +22,9 @@
|
||||
#include "kdebug.h"
|
||||
#include "kconfiggroup.h"
|
||||
#include <KCalendarSystem>
|
||||
|
||||
#include <QtCore/QDateTime>
|
||||
|
||||
#include <KDateTime>
|
||||
|
||||
//FIXME fix all the create static methods
|
||||
#include <QtCore/QDateTime>
|
||||
|
||||
QList<Locale::CalendarSystem> CalendarSystem::calendarSystemsList()
|
||||
{
|
||||
@ -178,32 +175,6 @@ int CalendarSystem::yearInEra(const QDate &date) const
|
||||
return m_calendarSystem->yearInEra(date);
|
||||
}
|
||||
|
||||
// NOT VIRTUAL - If override needed use shared-d
|
||||
//FIXME we need a wrapper for KCalendarEra!!
|
||||
/*QList<KCalendarEra> *CalendarSystem::eraList() const
|
||||
{
|
||||
Q_D(const KCalendarSystem);
|
||||
|
||||
return d->eraList();
|
||||
}*/
|
||||
|
||||
// NOT VIRTUAL - If override needed use shared-d
|
||||
/*FIXME we don't need the above.Correct?
|
||||
KCalendarEra CalendarSystem::era(const QDate &eraDate) const
|
||||
{
|
||||
Q_D(const KCalendarSystem);
|
||||
|
||||
return d->era(eraDate);
|
||||
}
|
||||
|
||||
// NOT VIRTUAL - If override needed use shared-d
|
||||
KCalendarEra CalendarSystem::era(const QString &eraName, int yearInEra) const
|
||||
{
|
||||
Q_D(const KCalendarSystem);
|
||||
|
||||
return d->era(eraName, yearInEra);
|
||||
}
|
||||
*/
|
||||
QDate CalendarSystem::addYears(const QDate &date, int numYears) const
|
||||
{
|
||||
return m_calendarSystem->addYears(date, numYears);
|
||||
|
@ -1147,12 +1147,6 @@ public:
|
||||
Q_INVOKABLE virtual bool isProleptic() const = 0;
|
||||
|
||||
private:
|
||||
//FIXME era issue..
|
||||
// Era functions needed by friends, may be made public later if needed in KCM
|
||||
QList<KCalendarEra> *eraList() const;
|
||||
KCalendarEra era(const QDate &eraDate) const;
|
||||
KCalendarEra era(const QString &eraName, int yearInEra) const;
|
||||
|
||||
KCalendarSystem *m_calendarSystem;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user