Mercurial > pidgin.yaz
diff libpurple/protocols/yahoo/yahoo_profile.c @ 28025:908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
in the prpl. I'm sure someone is going to want to shoot me over this, but I'm
tired of seeing "struct yahoo_data" everywhere in this prpl.
author | John Bailey <rekkanoryo@rekkanoryo.org> |
---|---|
date | Sun, 26 Jul 2009 17:25:18 +0000 |
parents | ef5f0cde8d74 |
children | 8be4bea98188 0123c69ec0e5 |
line wrap: on
line diff
--- a/libpurple/protocols/yahoo/yahoo_profile.c Sun Jul 26 17:17:03 2009 +0000 +++ b/libpurple/protocols/yahoo/yahoo_profile.c Sun Jul 26 17:25:18 2009 +0000 @@ -784,7 +784,7 @@ char *tmp; char *profile_url_text = NULL; int lang, strid; - struct yahoo_data *yd; + YahooData *yd; const profile_strings_node_t *strings = NULL; const char *title; profile_state_t profile_state = PROFILE_STATE_DEFAULT; @@ -956,7 +956,7 @@ const gchar *url_text, size_t len, const gchar *error_message) { YahooGetInfoStepTwoData *info2_data = (YahooGetInfoStepTwoData *)data; - struct yahoo_data *yd; + YahooData *yd; gboolean found = FALSE; int id = -1; @@ -1264,7 +1264,7 @@ void yahoo_get_info(PurpleConnection *gc, const char *name) { - struct yahoo_data *yd = gc->proto_data; + YahooData *yd = gc->proto_data; YahooGetInfoData *data; char *url; PurpleUtilFetchUrlData *url_data;