diff options
author | Ted Gould <ted@canonical.com> | 2009-04-10 14:19:31 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-04-10 14:19:31 -0500 |
commit | 28e006b96d738e589225ab45f13f7a358ac7642d (patch) | |
tree | 67471de5172eafeeb64208dd8e180e7766cce1ed /libindicate/interests.h | |
parent | 70697a6c0c3906e4825dadaf4d37ec6f2d0ab557 (diff) | |
parent | bcdeb139acbff6d15d442f2bac3b1bb751413645 (diff) | |
download | libayatana-indicator-28e006b96d738e589225ab45f13f7a358ac7642d.tar.gz libayatana-indicator-28e006b96d738e589225ab45f13f7a358ac7642d.tar.bz2 libayatana-indicator-28e006b96d738e589225ab45f13f7a358ac7642d.zip |
Merging in Eitan's gtype-ify of the enums and the IndicateListener... objects.
Diffstat (limited to 'libindicate/interests.h')
-rw-r--r-- | libindicate/interests.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libindicate/interests.h b/libindicate/interests.h index 70c52d9..1c6215a 100644 --- a/libindicate/interests.h +++ b/libindicate/interests.h @@ -34,8 +34,7 @@ License version 3 and version 2.1 along with this program. If not, see G_BEGIN_DECLS -typedef enum _IndicateInterests IndicateInterests; -enum _IndicateInterests { +typedef enum { INDICATE_INTEREST_NONE, /**< We're of no interest */ INDICATE_INTEREST_SERVER_DISPLAY, /**< Displays the server's existance to the user */ INDICATE_INTEREST_SERVER_SIGNAL, /**< Will send signals to the server to be displayed */ @@ -43,7 +42,7 @@ enum _IndicateInterests { INDICATE_INTEREST_INDICATOR_SIGNAL, /**< Will return signals based on individual indicators being responded to */ INDICATE_INTEREST_INDICATOR_COUNT, /**< Only displays a count of the indicators */ INDICATE_INTEREST_LAST /**< Makes merges and counting easier */ -}; +} IndicateInterests; G_END_DECLS |