Mercurial > pidgin
changeset 28365:5f13e8a5c1a0
Explicitly define the enum values like Paul wanted. Refs #9814.
author | John Bailey <rekkanoryo@rekkanoryo.org> |
---|---|
date | Mon, 12 Oct 2009 05:03:50 +0000 |
parents | 61856d0a2714 |
children | 9efe23192c0b |
files | libpurple/protocols/yahoo/libymsg.h |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/yahoo/libymsg.h Mon Oct 12 05:01:17 2009 +0000 +++ b/libpurple/protocols/yahoo/libymsg.h Mon Oct 12 05:03:50 2009 +0000 @@ -135,10 +135,10 @@ */ typedef enum { - YAHOO_FEDERATION_NONE, - YAHOO_FEDERATION_OCS, /* LCS or OCS private networks */ - YAHOO_FEDERATION_MSN, /* MSN or Windows Live network */ - YAHOO_FEDERATION_IBM = 9 /* IBM/Sametime network */ + YAHOO_FEDERATION_NONE = 0, /* No federation - Yahoo! network */ + YAHOO_FEDERATION_OCS = 1, /* LCS or OCS private networks */ + YAHOO_FEDERATION_MSN = 2, /* MSN or Windows Live network */ + YAHOO_FEDERATION_IBM = 9 /* IBM/Sametime network */ } YahooFederation;