Make the static methods normal ones
This commit is contained in:
parent
cc54b44fa2
commit
ee1ce0dca9
@ -29,11 +29,6 @@
|
|||||||
|
|
||||||
class KCalendarSystem;
|
class KCalendarSystem;
|
||||||
|
|
||||||
/**
|
|
||||||
* CalendarSystem abstract base class, provides support for local Calendar Systems in KDE
|
|
||||||
*
|
|
||||||
* Derived classes must be created through the create() static method
|
|
||||||
*/
|
|
||||||
class CalendarSystem : public QObject
|
class CalendarSystem : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
@ -172,7 +167,7 @@ public:
|
|||||||
* Returns the list of currently supported Calendar Systems
|
* Returns the list of currently supported Calendar Systems
|
||||||
* @return list of Calendar Systems
|
* @return list of Calendar Systems
|
||||||
*/
|
*/
|
||||||
static QList<int> calendarSystemsList();
|
QList<int> calendarSystemsList();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -188,7 +183,7 @@ public:
|
|||||||
*
|
*
|
||||||
* @return localized label for this Calendar System
|
* @return localized label for this Calendar System
|
||||||
*/
|
*/
|
||||||
QString calendarLabel() const;
|
QString calendarLabel() const; //TODO, it returns undefined
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a QDate holding the epoch of the calendar system. Usually YMD
|
* Returns a QDate holding the epoch of the calendar system. Usually YMD
|
||||||
|
Loading…
Reference in New Issue
Block a user