merge of '6b0cc6e80030e4d7930db16cfa523250288c880f'

Sat, 29 Dec 2007 19:19:56 +0000

author
Sadrul Habib Chowdhury <sadrul@pidgin.im>
date
Sat, 29 Dec 2007 19:19:56 +0000
changeset 22085
3da49c143ffa
parent 22084
6b0cc6e80030 (diff)
parent 22080
39cf44dceb93 (current diff)
child 22086
6594853346a3

merge of '6b0cc6e80030e4d7930db16cfa523250288c880f'
and '39cf44dceb93a56b58939c7ec725f41735f0ce7c'

--- 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);
 

mercurial