--- a/libpurple/chat.c Wed Apr 03 16:32:56 2024 -0500 +++ b/libpurple/chat.c Tue Apr 09 21:50:31 2024 -0500 @@ -265,6 +265,13 @@ obj_class->set_property = purple_chat_set_property; obj_class->constructed = purple_chat_constructed; + /** + * PurpleChat:alias: + * + * The alias of the chat. + * + * Since: 3.0 + */ properties[PROP_ALIAS] = g_param_spec_string( "alias", "Alias", @@ -273,6 +280,13 @@ G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS ); + /** + * PurpleChat:account: + * + * The account that the chat belongs to. + * + * Since: 3.0 + */ properties[PROP_ACCOUNT] = g_param_spec_object( "account", "Account", @@ -281,6 +295,13 @@ G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS ); + /** + * PurpleChat:components: + * + * The components for the chat. + * + * Since: 3.0 + */ properties[PROP_COMPONENTS] = g_param_spec_pointer( "components", "Components",