Document QCalendarBackend::name()

Neglected previously.

Pick-to: 5.15
Change-Id: I0acd9f77d1623a1fcd8766f734c350316401b3a9
Reviewed-by: Paul Wicking <paul.wicking@qt.io>
bb10
Edward Welbourne 2020-08-07 14:27:05 +02:00
parent a111dd26b1
commit 4c2fbe90ef
1 changed files with 8 additions and 1 deletions

View File

@ -202,9 +202,16 @@ QCalendar::System QCalendarBackend::calendarSystem() const
return QCalendar::System::User;
}
/*!
\fn QString QCalendarBackend::name() const;
This pure virtual method should be overloaded by each backend implementation
to return the name that the backend passes to the base-class as its name.
*/
/*!
The primary name of this calendar.
*/
*/
QString QCalendar::name() const
{
return d ? d->name() : QString();