changeset 11707:b7af9100af6c

[gaim-migrate @ 13998] Document that -1 is an allowed size value for xmlnode_from_str(). committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Fri, 21 Oct 2005 19:03:51 +0000
parents bcc49c25ef90
children 69602de55fe9
files doc/conversation-signals.dox src/xmlnode.h
diffstat 2 files changed, 8 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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.
  */