diff options
author | Ted Gould <ted@canonical.com> | 2009-10-21 15:42:13 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-21 15:42:13 -0500 |
commit | 0df50d723494e795aa7447c02ac0f15611b2bfd8 (patch) | |
tree | 1c6699141c68f36c7ccc2a4cf4305b0b6a113a65 /src/libcustomindicator/custom-indicator.h | |
parent | 5e34573c2cff345a2aa3c972ec4a0150f4c4183e (diff) | |
download | libayatana-appindicator-0df50d723494e795aa7447c02ac0f15611b2bfd8.tar.gz libayatana-appindicator-0df50d723494e795aa7447c02ac0f15611b2bfd8.tar.bz2 libayatana-appindicator-0df50d723494e795aa7447c02ac0f15611b2bfd8.zip |
Change the enums to match the KDE ones to make life simpler even though I dislike the names.
Diffstat (limited to 'src/libcustomindicator/custom-indicator.h')
-rw-r--r-- | src/libcustomindicator/custom-indicator.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libcustomindicator/custom-indicator.h b/src/libcustomindicator/custom-indicator.h index fd2ddc7..2e9045c 100644 --- a/src/libcustomindicator/custom-indicator.h +++ b/src/libcustomindicator/custom-indicator.h @@ -40,8 +40,8 @@ typedef enum { /*< prefix=CUSTOM_INDICATOR_CATEGORY >*/ /** CustomIndicatorStatus: - @CUSTOM_INDICATOR_STATUS_OFF: The indicator should not be shown to the user. - @CUSTOM_INDICATOR_STATUS_ON: The indicator should be shown in it's default state. + @CUSTOM_INDICATOR_STATUS_PASSIVE: The indicator should not be shown to the user. + @CUSTOM_INDICATOR_STATUS_ACTIVE: The indicator should be shown in it's default state. @CUSTOM_INDICATOR_STATUS_ATTENTION: The indicator should show it's attention icon. These are the states that the indicator can be on in @@ -50,8 +50,8 @@ typedef enum { /*< prefix=CUSTOM_INDICATOR_CATEGORY >*/ shown by setting it to @CUSTOM_INDICATOR_STATUS_ON. */ typedef enum { /*< prefix=CUSTOM_INDICATOR_STATUS >*/ - CUSTOM_INDICATOR_STATUS_OFF, - CUSTOM_INDICATOR_STATUS_ON, + CUSTOM_INDICATOR_STATUS_PASSIVE, + CUSTOM_INDICATOR_STATUS_ACTIVE, CUSTOM_INDICATOR_STATUS_ATTENTION } CustomIndicatorStatus; |