Mercurial > pidgin
changeset 21958:bdc832659314
merge of '136abe99803d125464bb1268eb7041051ad4c9ae'
and '65d6e329e8a42db36f462a47c3e8664cb6a93dec'
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sat, 29 Dec 2007 19:19:56 +0000 |
parents | d1f282dbbda1 (diff) 61b6e842a5bd (current diff) |
children | d3a4c98c01b7 |
files | |
diffstat | 4 files changed, 12 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/COPYRIGHT Sat Dec 29 17:40:44 2007 +0000 +++ b/COPYRIGHT Sat Dec 29 19:19:56 2007 +0000 @@ -298,6 +298,7 @@ Jory A. Pratt Brent Priddy Justin Pryzby +Ignacio Casal Quinteiro Federicco Mena Quintero Yosef Radchenko David Raeman @@ -414,6 +415,7 @@ Zsombor Welker Andrew Wellington Adam Wendt +Simon Wenner Dave West Zac West Daniel Westermann-Clark
--- a/libpurple/conversation.h Sat Dec 29 17:40:44 2007 +0000 +++ b/libpurple/conversation.h Sat Dec 29 19:19:56 2007 +0000 @@ -490,7 +490,8 @@ * * @param conv The conversation. * - * @return The conversation's name. + * @return The conversation's name. If the conversation is an IM with a PurpleBuddy, + * then it's the name of the PurpleBuddy. */ const char *purple_conversation_get_name(const PurpleConversation *conv); @@ -718,7 +719,7 @@ * * @param msg A PurpleConvMessage * - * @return The name of the sender of the message + * @return The message flags * * @since 2.2.0 */ @@ -729,7 +730,7 @@ * * @param msg A PurpleConvMessage * - * @return The name of the sender of the message + * @return The timestamp of the message * * @since 2.2.0 */
--- a/libpurple/xmlnode.c Sat Dec 29 17:40:44 2007 +0000 +++ b/libpurple/xmlnode.c Sat Dec 29 19:19:56 2007 +0000 @@ -552,6 +552,9 @@ g_strdup_printf("<?xml version='1.0' encoding='UTF-8' ?>" NEWLINE_S NEWLINE_S "%s", xml); g_free(xml); + if (len) + *len += sizeof("<?xml version='1.0' encoding='UTF-8' ?>" NEWLINE_S NEWLINE_S) - 1; + return xml_with_declaration; }
--- a/pidgin/gtkblist.c Sat Dec 29 17:40:44 2007 +0000 +++ b/pidgin/gtkblist.c Sat Dec 29 19:19:56 2007 +0000 @@ -4853,6 +4853,9 @@ #endif gtk_tooltips_force_window (tooltips); +#if GTK_CHECK_VERSION(2, 12, 0) + gtk_widget_set_name (tooltips->tip_window, "gtk-tooltips"); +#endif gtk_widget_ensure_style (tooltips->tip_window); style = gtk_widget_get_style (tooltips->tip_window);