From 663f1a64f6c46d1609b269e558a78f5b28d903e0 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Mon, 23 Oct 2023 13:41:50 +0100 Subject: [PATCH] docs: Move the GFilenameCompleter SECTION Move it to the struct docs. Signed-off-by: Philip Withnall Helps: #3037 --- gio/gfilenamecompleter.c | 7 ++----- gio/gfilenamecompleter.h | 5 ----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/gio/gfilenamecompleter.c b/gio/gfilenamecompleter.c index 4665be31c..aca42498a 100644 --- a/gio/gfilenamecompleter.c +++ b/gio/gfilenamecompleter.c @@ -32,15 +32,12 @@ /** - * SECTION:gfilenamecompleter - * @short_description: Filename Completer - * @include: gio/gio.h + * GFilenameCompleter: * * Completes partial file and directory names given a partial string by * looking in the file system for clues. Can return a list of possible * completion strings for widget implementations. - * - **/ + */ enum { GOT_COMPLETION_DATA, diff --git a/gio/gfilenamecompleter.h b/gio/gfilenamecompleter.h index b105e49ce..d835af8d9 100644 --- a/gio/gfilenamecompleter.h +++ b/gio/gfilenamecompleter.h @@ -38,11 +38,6 @@ G_BEGIN_DECLS #define G_IS_FILENAME_COMPLETER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILENAME_COMPLETER)) #define G_IS_FILENAME_COMPLETER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILENAME_COMPLETER)) -/** - * GFilenameCompleter: - * - * Completes filenames based on files that exist within the file system. - **/ typedef struct _GFilenameCompleterClass GFilenameCompleterClass; struct _GFilenameCompleterClass