docs: Move the GZlib*Compressor SECTIONs

Move them to the struct docs.

Signed-off-by: Philip Withnall <philip@tecnocode.co.uk>

Helps: #3037
This commit is contained in:
Philip Withnall 2023-11-02 16:29:26 +00:00
parent 38c4809719
commit 9e95163a3c
2 changed files with 4 additions and 18 deletions

View File

@ -43,21 +43,14 @@ enum {
};
/**
* SECTION:gzlibcompressor
* @short_description: Zlib compressor
* @include: gio/gio.h
* GZlibCompressor:
*
* #GZlibCompressor is an implementation of #GConverter that
* `GZlibCompressor` is an implementation of [iface@Gio.Converter] that
* compresses data using zlib.
*/
static void g_zlib_compressor_iface_init (GConverterIface *iface);
/**
* GZlibCompressor:
*
* Zlib decompression
*/
struct _GZlibCompressor
{
GObject parent_instance;

View File

@ -42,11 +42,9 @@ enum {
};
/**
* SECTION:gzlibdecompressor
* @short_description: Zlib decompressor
* @include: gio/gio.h
* GZlibDecompressor:
*
* #GZlibDecompressor is an implementation of #GConverter that
* `GZlibDecompressor` is an implementation of [iface@Gio.Converter] that
* decompresses data compressed with zlib.
*/
@ -58,11 +56,6 @@ typedef struct {
GFileInfo *file_info;
} HeaderData;
/**
* GZlibDecompressor:
*
* Zlib decompression
*/
struct _GZlibDecompressor
{
GObject parent_instance;