diff --git a/src/retroshare/rshistory.h b/src/retroshare/rshistory.h index 279418164b..464fa1fd25 100644 --- a/src/retroshare/rshistory.h +++ b/src/retroshare/rshistory.h @@ -25,6 +25,9 @@ class RsHistory; class ChatId; +/** + * @jsonapi{development} + */ extern RsHistory *rsHistory; #include @@ -112,7 +115,7 @@ class RsHistory /*! * @brief clears the message history for a given chat peer * @jsonapi{development} - * @param[in] chatPeerID Id of the chat/peer for which the history needs to be wiped + * @param[in] chatPeerId Id of the chat/peer for which the history needs to be wiped */ virtual void clear(const ChatId &chatPeerId) = 0; @@ -128,7 +131,7 @@ class RsHistory * @brief Set whether chat history is enabled or not * @jsonapi{development} * @param[in] chat_type Type of chat (see list of constants above) - * @param[in] enabled Desired state of the variable + * @param[in] enable Desired state of the variable */ virtual void setEnable(uint32_t chat_type, bool enable) = 0; @@ -152,6 +155,7 @@ class RsHistory /*! * @brief Sets the maximum number of messages to save + * @jsonapi{development} * @param[in] chat_type Type of chat for that number limit * @param[in] count Max umber of messages, 0 meaning indefinitely */