about summary refs log tree commit diff stats
path: root/apidocs/c/profhooks.h
diff options
context:
space:
mode:
Diffstat (limited to 'apidocs/c/profhooks.h')
-rw-r--r--apidocs/c/profhooks.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/apidocs/c/profhooks.h b/apidocs/c/profhooks.h
index cb14e794..43f2d086 100644
--- a/apidocs/c/profhooks.h
+++ b/apidocs/c/profhooks.h
@@ -45,7 +45,7 @@ Called before a chat message is displayed
 @param barejid Jabber ID of the message sender
 @param resource resource of the message sender
 @param message the received message
-@return the new message to display, or NULL to preserve the original message 
+@return the new message to display, or NULL to preserve the original message
 */
 char* prof_pre_chat_message_display(const char * const barejid, const char *const resource, const char *message);
 
@@ -77,14 +77,14 @@ Called before a chat room message is displayed
 @param barejid Jabber ID of the room
 @param nick nickname of message sender
 @param message the received message
-@return the new message to display, or NULL to preserve the original message 
+@return the new message to display, or NULL to preserve the original message
 */
 char* prof_pre_room_message_display(const char * const barejid, const char * const nick, const char *message);
 
 /**
 Called after a chat room message is displayed
 @param barejid Jabber ID of the room
-@param nick nickname of the message sender 
+@param nick nickname of the message sender
 @param message the received message
 */
 void prof_post_room_message_display(const char * const barejid, const char * const nick, const char *message);
@@ -118,14 +118,14 @@ Called before a private chat room message is displayed
 @param barejid Jabber ID of the room
 @param nick nickname of message sender
 @param message the received message
-@return the new message to display, or NULL to preserve the original message 
+@return the new message to display, or NULL to preserve the original message
 */
 char* prof_pre_priv_message_display(const char * const barejid, const char * const nick, const char *message);
 
 /**
 Called after a private chat room message is displayed
 @param barejid Jabber ID of the room
-@param nick nickname of the message sender 
+@param nick nickname of the message sender
 @param message the received message
 */
 void prof_post_priv_message_display(const char * const barejid, const char * const nick, const char *message);