# HG changeset patch # User Richard Laager # Date 1129921431 0 # Node ID b7af9100af6c8a87f704d45e4df7febff2c4ee39 # Parent bcc49c25ef909b376c92b7047b1b6df9cbfe9025 [gaim-migrate @ 13998] Document that -1 is an allowed size value for xmlnode_from_str(). committer: Tailor Script diff -r bcc49c25ef90 -r b7af9100af6c doc/conversation-signals.dox --- a/doc/conversation-signals.dox Fri Oct 21 19:03:51 2005 +0000 +++ b/doc/conversation-signals.dox Fri Oct 21 19:03:51 2005 +0000 @@ -317,20 +317,22 @@ @signaldef buddy-typing @signalproto -void (*buddy_typing)(GaimConversation *conv); +void (*buddy_typing)(GaimAccount *account, const char *name); @endsignalproto @signaldesc Emitted when a buddy starts typing in a conversation window. - @param conv The IM conversation a buddy is typing in. + @param account The account of the user which is typing. + @param name The name of the user which is typing. @endsignaldef @signaldef buddy-typing-stopped @signalproto -void (*buddy_typing)(GaimConversation *conv); +void (*buddy_typing_stopped)(GaimAccount *account, const char *name); @endsignalproto @signaldesc Emitted when a buddy stops typing in a conversation window. - @param conv The IM conversation a buddy is typing in. + @param account The account of the user which stopped typing. + @param name The name of the user which stopped typing. @endsignaldef @signaldef chat-buddy-joining diff -r bcc49c25ef90 -r b7af9100af6c src/xmlnode.h --- a/src/xmlnode.h Fri Oct 21 19:03:51 2005 +0000 +++ b/src/xmlnode.h Fri Oct 21 19:03:51 2005 +0000 @@ -181,7 +181,8 @@ * into a tree of nodes, and return the xmlnode of the root. * * @param str The string of xml. - * @param size The size of the string. + * @param size The size of the string, or -1 if @a str is + * NUL-terminated. * * @return The new node. */