Fix a typo,remove a deprecated method add comment the Locale::calendar
This commit is contained in:
parent
7877980f2e
commit
6b784a98e8
@ -641,10 +641,10 @@ Locale::CalendarSystem Locale::calendarSystem() const
|
||||
return (Locale::CalendarSystem)m_locale->calendarSystem();
|
||||
}
|
||||
|
||||
const KCalendarSystem * Locale::calendar() const
|
||||
/*const KCalendarSystem * Locale::calendar() const
|
||||
{
|
||||
return m_locale->calendar();
|
||||
}
|
||||
}*/
|
||||
|
||||
void Locale::setWeekNumberSystem(Locale::WeekNumberSystem weekNumberSystem)
|
||||
{
|
||||
|
@ -84,8 +84,7 @@ Q_ENUMS(WeekNumberSystem)
|
||||
|
||||
//properties
|
||||
Q_PROPERTY(BinaryUnitDialect binaryUnitDialect READ binaryUnitDialect WRITE setBinaryUnitDialect NOTIFY binaryUnitDialectChanged)
|
||||
Q_PROPERTY(KCalendarSystem *calendar READ calendar WRITE setCalendar NOTIFY calendarChanged)
|
||||
Q_PROPERTY(Locale::CalendarSystem *calendarSystem READ calendarSystem WRITE setCalendarSystem NOTIFY calendarSystemChanged)
|
||||
Q_PROPERTY(Locale::CalendarSystem calendarSystem READ calendarSystem WRITE setCalendarSystem NOTIFY calendarSystemChanged)
|
||||
Q_PROPERTY(QString country READ country WRITE setCountry NOTIFY countryChanged)
|
||||
Q_PROPERTY(QString countryDivisionCode READ countryDivisionCode WRITE setCountryDivisionCode NOTIFY countryDivisionCodeChanged)
|
||||
Q_PROPERTY(QString currencyCode READ currencyCode WRITE setCurrencyCode NOTIFY currencyCodeChanged)
|
||||
@ -1054,12 +1053,17 @@ public:
|
||||
*/
|
||||
int weekDayOfPray() const;
|
||||
|
||||
/**
|
||||
* What should I do with the above?
|
||||
* It won't work in QML.
|
||||
**/
|
||||
|
||||
/**
|
||||
* Returns a pointer to the calendar system object.
|
||||
*
|
||||
* @return the current calendar system instance
|
||||
*/
|
||||
const KCalendarSystem * calendar() const;
|
||||
//const KCalendarSystem * calendar() const;
|
||||
|
||||
/**
|
||||
*
|
||||
@ -2017,7 +2021,6 @@ Q_SIGNALS:
|
||||
void weekStartDayChanged();
|
||||
void workingWeekEndDayChanged();
|
||||
void workingWeekStartDayChanged();
|
||||
void calendarChanged();
|
||||
};
|
||||
//TODO remove the above?
|
||||
//Q_DECLARE_OPERATORS_FOR_FLAGS(Locale::DateTimeFormatOptions)
|
||||
|
Loading…
Reference in New Issue
Block a user