Elementary: make calendar enum uniform to other widgets'

SVN revision: 61573
This commit is contained in:
Bruno Dilly 2011-07-21 22:03:43 +00:00
parent a1ad7bc0bd
commit 8a32036a36
1 changed files with 6 additions and 1 deletions

View File

@ -10711,6 +10711,9 @@ extern "C" {
*/ */
/** /**
* @enum _Elm_Calendar_Mark_Repeat
* @typedef Elm_Calendar_Mark_Repeat
*
* Event periodicity, used to define if a mark should be repeated * Event periodicity, used to define if a mark should be repeated
* @b beyond event's day. It's set when a mark is added. * @b beyond event's day. It's set when a mark is added.
* *
@ -10721,8 +10724,10 @@ extern "C" {
* Values don't work as bitmaks, only one can be choosen. * Values don't work as bitmaks, only one can be choosen.
* *
* @see elm_calendar_mark_add() * @see elm_calendar_mark_add()
*
* @ingroup Calendar
*/ */
typedef enum typedef enum _Elm_Calendar_Mark_Repeat
{ {
ELM_CALENDAR_UNIQUE, /**< Default value. Marks will be displayed only on event day. */ ELM_CALENDAR_UNIQUE, /**< Default value. Marks will be displayed only on event day. */
ELM_CALENDAR_DAILY, /**< Marks will be displayed everyday after event day (inclusive). */ ELM_CALENDAR_DAILY, /**< Marks will be displayed everyday after event day (inclusive). */