# HG changeset patch # User Christian Hammond # Date 1062965371 0 # Node ID 0489da496f335ca9e3d29f09890d30dff4320a32 # Parent e9a730ad5a3ce4ea8b9999ec2c7ab25652287358 [gaim-migrate @ 7320] Updated signal documentation. committer: Tailor Script diff -r e9a730ad5a3c -r 0489da496f33 ChangeLog --- a/ChangeLog Sun Sep 07 20:02:45 2003 +0000 +++ b/ChangeLog Sun Sep 07 20:09:31 2003 +0000 @@ -10,6 +10,7 @@ * Yahoo ignore support (Jesse Farmer (farmerje)) * The accounts window now shows offline accounts as greyed out, and online accounts as colored. + * Fixed the text replacement plugin. * Added SSL support, compatible with GNUTLS and Mozilla NSS. * Added support for gettext 0.12.x. * The right-click menu for conversation tabs now shows the tab icon diff -r e9a730ad5a3c -r 0489da496f33 doc/conversation-signals.dox --- a/doc/conversation-signals.dox Sun Sep 07 20:02:45 2003 +0000 +++ b/doc/conversation-signals.dox Sun Sep 07 20:09:31 2003 +0000 @@ -29,7 +29,7 @@ @signaldef displaying-im-msg @signalproto -gboolean (*displaying_im_msg)(GaimAccount *account, char **message); +gboolean (*displaying_im_msg)(GaimAccount *account, GaimConversation *conv, char **message); @endsignalproto @signaldesc Emitted just before a message is displayed in an IM conversation. @@ -39,17 +39,19 @@ @note Make sure to free @a *message before you replace it! @param account The account the message is being displayed on. + @param conv The conversation the message is being displayed on. @param message A pointer to the message that will be displayed. @return @c TRUE if the message should be canceled, or @c FALSE otherwise. @endsignaldef @signaldef displayed-im-msg @signalproto -void (*displayed_im_msg)(GaimAccount *account, const char *message); +void (*displayed_im_msg)(GaimAccount *account, GaimConversation *conv, const char *message); @endsignalproto @signaldesc Emitted after a message is displayed in an IM conversation. @param account The account the message was displayed on. + @param conv The conversation the message was displayed on. @param message The message that was displayed. @endsignaldef @@ -100,7 +102,7 @@ @signaldef displaying-chat-msg @signalproto -gboolean (*displaying_chat_msg)(GaimAccount *account, char **message); +gboolean (*displaying_chat_msg)(GaimAccount *account, GaimConversation *conv, char **message); @endsignalproto @signaldesc Emitted just before a message is displayed in a chat. @@ -110,17 +112,19 @@ @note Make sure to free @a *message before you replace it! @param account The account the message is being displayed on. + @param conv The conversation the message is being displayed on. @param message A pointer to the message that will be displayed. @return @c TRUE if the message should be canceled, or @c FALSE otherwise. @endsignaldef @signaldef displayed-chat-msg @signalproto -void (*displayed_chat_msg)(GaimAccount *account, const char *message); +void (*displayed_chat_msg)(GaimAccount *account, GaimConversation *conv, const char *message); @endsignalproto @signaldesc Emitted after a message is displayed in a chat conversation. @param account The account the message was displayed on. + @param conv The conversation the message was displayed on. @param message The message that was displayed. @endsignaldef