diff -r 22981e338804 -r 477889a0073c pidgin/gtkwebviewtoolbar.c --- a/pidgin/gtkwebviewtoolbar.c Sat Aug 03 02:51:19 2013 +0530 +++ b/pidgin/gtkwebviewtoolbar.c Sat Aug 03 02:59:25 2013 +0530 @@ -1611,15 +1611,15 @@ { GtkWebViewToolbarPriv *priv = GTK_WEBVIEWTOOLBAR_GET_PRIVATE(toolbar); PurpleConnection *gc = purple_conversation_get_connection(conv); - PurplePlugin *prpl = purple_connection_get_protocol_info(gc); + PurplePluginProtocolInfo *prpl_info = purple_connection_get_protocol_info(gc); priv->active_conv = conv; /* gray out attention button on protocols that don't support it for the time being it is always disabled for chats */ gtk_action_set_sensitive(priv->attention, - conv && prpl && PURPLE_IS_IM_CONVERSATION(conv) && - PURPLE_PLUGIN_PROTOCOL_INFO(prpl)->send_attention != NULL); + conv && prpl_info && PURPLE_IS_IM_CONVERSATION(conv) && + prpl_info->send_attention != NULL); } void