From 49a94280c185d4f27537a6897ebb89d440ca2d2c Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Mon, 23 Oct 2023 14:40:39 +0100 Subject: [PATCH] docs: Move the GListStore SECTION Move it to the struct docs. Signed-off-by: Philip Withnall Helps: #3037 --- gio/gliststore.c | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/gio/gliststore.c b/gio/gliststore.c index 497dfb5a8..375485690 100644 --- a/gio/gliststore.c +++ b/gio/gliststore.c @@ -28,25 +28,15 @@ #include "glistmodel.h" /** - * SECTION:gliststore - * @title: GListStore - * @short_description: A simple implementation of #GListModel - * @include: gio/gio.h + * GListStore: * - * #GListStore is a simple implementation of #GListModel that stores all - * items in memory. + * `GListStore` is a simple implementation of [iface@Gio.ListModel] that stores + * all items in memory. * * It provides insertions, deletions, and lookups in logarithmic time * with a fast path for the common case of iterating the list linearly. */ -/** - * GListStore: - * - * #GListStore is an opaque data structure and can only be accessed - * using the following functions. - **/ - struct _GListStore { GObject parent_instance;