diff options
author | Ted Gould <ted@gould.cx> | 2010-06-01 10:58:57 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-06-01 10:58:57 -0500 |
commit | e0ddc2dbf98ad7411b9a29b34bfd99f94f1ce74e (patch) | |
tree | 7d385aef35dea7ba3fab4798b9c008eede3732f2 /src/app-indicator.h | |
parent | f7fd52b7477bfbef0762e8e608f3a9b095133fd1 (diff) | |
parent | 01fafa492912486a291d70d2289ba4d77355be92 (diff) | |
download | ayatana-indicator-application-e0ddc2dbf98ad7411b9a29b34bfd99f94f1ce74e.tar.gz ayatana-indicator-application-e0ddc2dbf98ad7411b9a29b34bfd99f94f1ce74e.tar.bz2 ayatana-indicator-application-e0ddc2dbf98ad7411b9a29b34bfd99f94f1ce74e.zip |
Fixes to docuementation and making the enums build correctly with gtk-mkenum
Diffstat (limited to 'src/app-indicator.h')
-rw-r--r-- | src/app-indicator.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/app-indicator.h b/src/app-indicator.h index 549ab35..e37abd4 100644 --- a/src/app-indicator.h +++ b/src/app-indicator.h @@ -113,11 +113,11 @@ G_BEGIN_DECLS users can find indicators that are similar together. */ typedef enum { /*< prefix=APP_INDICATOR_CATEGORY >*/ - APP_INDICATOR_CATEGORY_APPLICATION_STATUS, - APP_INDICATOR_CATEGORY_COMMUNICATIONS, - APP_INDICATOR_CATEGORY_SYSTEM_SERVICES, - APP_INDICATOR_CATEGORY_HARDWARE, - APP_INDICATOR_CATEGORY_OTHER + APP_INDICATOR_CATEGORY_APPLICATION_STATUS, /*< nick=ApplicationStatus >*/ + APP_INDICATOR_CATEGORY_COMMUNICATIONS, /*< nick=Communications >*/ + APP_INDICATOR_CATEGORY_SYSTEM_SERVICES, /*< nick=SystemServices >*/ + APP_INDICATOR_CATEGORY_HARDWARE, /*< nick=Hardware >*/ + APP_INDICATOR_CATEGORY_OTHER /*< nick=Other >*/ } AppIndicatorCategory; /** @@ -132,9 +132,9 @@ typedef enum { /*< prefix=APP_INDICATOR_CATEGORY >*/ shown by setting it to @APP_INDICATOR_STATUS_ACTIVE. */ typedef enum { /*< prefix=APP_INDICATOR_STATUS >*/ - APP_INDICATOR_STATUS_PASSIVE, - APP_INDICATOR_STATUS_ACTIVE, - APP_INDICATOR_STATUS_ATTENTION + APP_INDICATOR_STATUS_PASSIVE, /*< nick=Passive >*/ + APP_INDICATOR_STATUS_ACTIVE, /*< nick=Active >*/ + APP_INDICATOR_STATUS_ATTENTION /*< nick=NeedsAttention >*/ } AppIndicatorStatus; typedef struct _AppIndicator AppIndicator; |