pidgin/pidgin

Remove documentation for non-public struct fields.

2019-12-19, Elliott Sales de Andrade
7a330cab3546
Parents 474bc477bda8
Children 056a71665e06
Remove documentation for non-public struct fields.
--- a/libpurple/attention.c Thu Dec 19 00:46:46 2019 -0500
+++ b/libpurple/attention.c Thu Dec 19 00:51:06 2019 -0500
@@ -25,10 +25,15 @@
* PurpleAttentionType API
*****************************************************************************/
struct _PurpleAttentionType {
+ /* The name to show in GUI elements. */
const gchar *name;
+ /* Shown when received. */
const gchar *incoming_description;
+ /* Shown when sent. */
const gchar *outgoing_description;
+ /* Optional name of the icon to display. */
const gchar *icon_name;
+ /* An unlocalized name for UIs that would rather use that. */
const gchar *unlocalized_name;
};
--- a/libpurple/attention.h Thu Dec 19 00:46:46 2019 -0500
+++ b/libpurple/attention.h Thu Dec 19 00:51:06 2019 -0500
@@ -36,11 +36,6 @@
/**
* PurpleAttentionType:
- * @name: The name to show in GUI elements.
- * @incoming_description: Shown when received.
- * @outgoing_description: Shown when sent.
- * @icon_name: Optional name of the icon to display.
- * @unlocalized_name: An unlocalized name for UIs that would rather use that.
*
* Represents "nudges" and "buzzes" that you may send to a buddy to attract
* their attention (or vice-versa).
--- a/libpurple/conversationtypes.c Thu Dec 19 00:46:46 2019 -0500
+++ b/libpurple/conversationtypes.c Thu Dec 19 00:51:06 2019 -0500
@@ -95,7 +95,6 @@
/**
* PurpleChatUser:
- * @ui_data: The UI data associated with this chat user.
*
* Structure representing a chat user instance.
*/
@@ -103,7 +102,6 @@
{
GObject gparent;
- /*< public >*/
gpointer ui_data;
};
--- a/libpurple/protocol.h Thu Dec 19 00:46:46 2019 -0500
+++ b/libpurple/protocol.h Thu Dec 19 00:51:06 2019 -0500
@@ -257,7 +257,7 @@
* protocol's active connections. You'd want to do this if you
* need to repeatedly send some kind of keepalive packet to
* the server to avoid being disconnected. ("Regularly" is
- * defined to be 30 unless get_keepalive_interval() is
+ * defined to be 30 unless @get_keepalive_interval is
* implemented to override it).
* <filename>libpurple/connection.c</filename>.)
* @get_keepalive_interval: If implemented, this will override the default
@@ -606,8 +606,6 @@
* inherits #PurpleRoomlist.
* @whiteboard_new: Creates a new protocol-specific whiteboard object that
* inherits #PurpleWhiteboard.
- * @xfer_new: Creates a new protocol-specific file transfer object that
- * inherits #PurpleXfer.
*
* The protocol factory interface.
*