[gnome-software] trivial: Get rid of useless internal-only gtk-doc markup



commit 5b8512567445107776288737ca1b2dd681dab185
Author: Richard Hughes <richard hughsie com>
Date:   Tue Jun 28 17:21:43 2016 +0100

    trivial: Get rid of useless internal-only gtk-doc markup

 src/gs-app-list.c              |   15 ---
 src/gs-app-row.c               |   18 ----
 src/gs-app.c                   |   45 ---------
 src/gs-application.c           |   12 ---
 src/gs-category.c              |    6 -
 src/gs-cmd.c                   |   18 ----
 src/gs-common.c                |   24 -----
 src/gs-dbus-helper.c           |   15 ---
 src/gs-debug.c                 |   15 ---
 src/gs-language.c              |   18 ----
 src/gs-os-release.c            |   15 ---
 src/gs-plugin-loader-sync.c    |   63 ------------
 src/gs-plugin-loader.c         |  204 ----------------------------------------
 src/gs-plugin.c                |   30 ------
 src/gs-review-bar.c            |   15 ---
 src/gs-review-histogram.c      |    6 -
 src/gs-screenshot-image.c      |   51 ----------
 src/gs-self-test.c             |    3 -
 src/gs-shell-category.c        |    3 -
 src/gs-shell-details.c         |   84 ----------------
 src/gs-shell-installed.c       |   45 ---------
 src/gs-shell-loading.c         |   27 -----
 src/gs-shell-moderate.c        |   30 ------
 src/gs-shell-overview.c        |   21 ----
 src/gs-shell-search-provider.c |    3 -
 src/gs-shell-search.c          |   39 --------
 src/gs-shell-updates.c         |   90 ------------------
 src/gs-shell.c                 |   39 --------
 src/gs-star-widget.c           |   30 ------
 src/gs-update-list.c           |    3 -
 src/gs-vendor.c                |   18 ----
 31 files changed, 0 insertions(+), 1005 deletions(-)
---
diff --git a/src/gs-app-list.c b/src/gs-app-list.c
index 238ff90..e7b9169 100644
--- a/src/gs-app-list.c
+++ b/src/gs-app-list.c
@@ -163,9 +163,6 @@ typedef struct {
        gpointer                 user_data;
 } GsAppListSortHelper;
 
-/**
- * gs_app_list_sort_cb:
- **/
 static gint
 gs_app_list_sort_cb (gconstpointer a, gconstpointer b, gpointer user_data)
 {
@@ -192,9 +189,6 @@ gs_app_list_sort (GsAppList *list, GsAppListSortFunc func, gpointer user_data)
        g_ptr_array_sort_with_data (list->array, gs_app_list_sort_cb, &helper);
 }
 
-/**
- * gs_app_list_randomize_cb:
- */
 static gint
 gs_app_list_randomize_cb (gconstpointer a, gconstpointer b, gpointer user_data)
 {
@@ -345,9 +339,6 @@ gs_app_list_copy (GsAppList *list)
        return new;
 }
 
-/**
- * gs_app_list_finalize:
- **/
 static void
 gs_app_list_finalize (GObject *object)
 {
@@ -357,9 +348,6 @@ gs_app_list_finalize (GObject *object)
        G_OBJECT_CLASS (gs_app_list_parent_class)->finalize (object);
 }
 
-/**
- * gs_app_list_class_init:
- **/
 static void
 gs_app_list_class_init (GsAppListClass *klass)
 {
@@ -367,9 +355,6 @@ gs_app_list_class_init (GsAppListClass *klass)
        object_class->finalize = gs_app_list_finalize;
 }
 
-/**
- * gs_app_list_init:
- **/
 static void
 gs_app_list_init (GsAppList *list)
 {
diff --git a/src/gs-app-row.c b/src/gs-app-row.c
index 83ff37b..17ace78 100644
--- a/src/gs-app-row.c
+++ b/src/gs-app-row.c
@@ -113,9 +113,6 @@ gs_app_row_get_description (GsAppRow *app_row)
        return g_string_new (tmp);
 }
 
-/**
- * gs_app_row_refresh:
- **/
 void
 gs_app_row_refresh (GsAppRow *app_row)
 {
@@ -390,9 +387,6 @@ gs_app_row_unreveal (GsAppRow *app_row)
        gtk_revealer_set_reveal_child (GTK_REVEALER (revealer), FALSE);
 }
 
-/**
- * gs_app_row_get_app:
- **/
 GsApp *
 gs_app_row_get_app (GsAppRow *app_row)
 {
@@ -401,9 +395,6 @@ gs_app_row_get_app (GsAppRow *app_row)
        return priv->app;
 }
 
-/**
- * gs_app_row_refresh_idle_cb:
- **/
 static gboolean
 gs_app_row_refresh_idle_cb (gpointer user_data)
 {
@@ -414,9 +405,6 @@ gs_app_row_refresh_idle_cb (gpointer user_data)
        return FALSE;
 }
 
-/**
- * gs_app_row_notify_props_changed_cb:
- **/
 static void
 gs_app_row_notify_props_changed_cb (GsApp *app,
                                    GParamSpec *pspec,
@@ -428,9 +416,6 @@ gs_app_row_notify_props_changed_cb (GsApp *app,
        priv->pending_refresh_id = g_idle_add (gs_app_row_refresh_idle_cb, app_row);
 }
 
-/**
- * gs_app_row_set_app:
- **/
 static void
 gs_app_row_set_app (GsAppRow *app_row, GsApp *app)
 {
@@ -450,9 +435,6 @@ gs_app_row_set_app (GsAppRow *app_row, GsApp *app)
        gs_app_row_refresh (app_row);
 }
 
-/**
- * gs_app_row_destroy:
- **/
 static void
 gs_app_row_destroy (GtkWidget *object)
 {
diff --git a/src/gs-app.c b/src/gs-app.c
index dc3f2ae..6d027fa 100644
--- a/src/gs-app.c
+++ b/src/gs-app.c
@@ -133,9 +133,6 @@ enum {
 
 G_DEFINE_TYPE (GsApp, gs_app, G_TYPE_OBJECT)
 
-/**
- * gs_app_kv_lpad:
- **/
 static void
 gs_app_kv_lpad (GString *str, const gchar *key, const gchar *value)
 {
@@ -146,9 +143,6 @@ gs_app_kv_lpad (GString *str, const gchar *key, const gchar *value)
        g_string_append_printf (str, " %s\n", value);
 }
 
-/**
- * gs_app_kv_printf:
- **/
 G_GNUC_PRINTF (3, 4)
 static void
 gs_app_kv_printf (GString *str, const gchar *key, const gchar *fmt, ...)
@@ -161,9 +155,6 @@ gs_app_kv_printf (GString *str, const gchar *key, const gchar *fmt, ...)
        gs_app_kv_lpad (str, key, tmp);
 }
 
-/**
- * _as_app_quirk_flag_to_string:
- **/
 static const gchar *
 _as_app_quirk_flag_to_string (AsAppQuirk quirk)
 {
@@ -585,9 +576,6 @@ gs_app_set_state_recover (GsApp *app)
        gs_app_queue_notify (app, "state");
 }
 
-/**
- * gs_app_set_state_internal:
- */
 static gboolean
 gs_app_set_state_internal (GsApp *app, AsAppState state)
 {
@@ -1248,9 +1236,6 @@ gs_app_get_ui_version (const gchar *version, guint64 flags)
        return new;
 }
 
-/**
- * gs_app_ui_versions_invalidate:
- */
 static void
 gs_app_ui_versions_invalidate (GsApp *app)
 {
@@ -1260,9 +1245,6 @@ gs_app_ui_versions_invalidate (GsApp *app)
        app->update_version_ui = NULL;
 }
 
-/**
- * gs_app_ui_versions_populate:
- */
 static void
 gs_app_ui_versions_populate (GsApp *app)
 {
@@ -1483,9 +1465,6 @@ gs_app_get_license_is_free (GsApp *app)
        return app->license_is_free;
 }
 
-/**
- * gs_app_get_license_token_is_nonfree:
- */
 static gboolean
 gs_app_get_license_token_is_nonfree (const gchar *token)
 {
@@ -1740,9 +1719,6 @@ gs_app_get_update_version_ui (GsApp *app)
        return app->update_version_ui;
 }
 
-/**
- * gs_app_set_update_version_internal:
- */
 static void
 gs_app_set_update_version_internal (GsApp *app, const gchar *update_version)
 {
@@ -2678,9 +2654,6 @@ gs_app_set_last_error (GsApp *app, GError *error)
        app->last_error = g_error_copy (error);
 }
 
-/**
- * gs_app_get_property:
- */
 static void
 gs_app_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
 {
@@ -2726,9 +2699,6 @@ gs_app_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *
        }
 }
 
-/**
- * gs_app_set_property:
- */
 static void
 gs_app_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
 {
@@ -2780,10 +2750,6 @@ gs_app_set_property (GObject *object, guint prop_id, const GValue *value, GParam
        }
 }
 
-/**
- * gs_app_dispose:
- * @object: The object to dispose
- **/
 static void
 gs_app_dispose (GObject *object)
 {
@@ -2801,10 +2767,6 @@ gs_app_dispose (GObject *object)
        G_OBJECT_CLASS (gs_app_parent_class)->dispose (object);
 }
 
-/**
- * gs_app_finalize:
- * @object: The object to finalize
- **/
 static void
 gs_app_finalize (GObject *object)
 {
@@ -2846,10 +2808,6 @@ gs_app_finalize (GObject *object)
        G_OBJECT_CLASS (gs_app_parent_class)->finalize (object);
 }
 
-/**
- * gs_app_class_init:
- * @klass: The GsAppClass
- **/
 static void
 gs_app_class_init (GsAppClass *klass)
 {
@@ -2949,9 +2907,6 @@ gs_app_class_init (GsAppClass *klass)
        g_object_class_install_property (object_class, PROP_QUIRK, pspec);
 }
 
-/**
- * gs_app_init:
- **/
 static void
 gs_app_init (GsApp *app)
 {
diff --git a/src/gs-application.c b/src/gs-application.c
index d3bc3b1..366cc4c 100644
--- a/src/gs-application.c
+++ b/src/gs-application.c
@@ -412,9 +412,6 @@ profile_activated (GSimpleAction *action,
        as_profile_dump (app->profile);
 }
 
-/**
- * cancel_trigger_failed_cb:
- **/
 static void
 cancel_trigger_failed_cb (GObject *source, GAsyncResult *res, gpointer user_data)
 {
@@ -426,9 +423,6 @@ cancel_trigger_failed_cb (GObject *source, GAsyncResult *res, gpointer user_data
        }
 }
 
-/**
- * reboot_failed_cb:
- **/
 static void
 reboot_failed_cb (GObject *source, GAsyncResult *res, gpointer user_data)
 {
@@ -455,9 +449,6 @@ reboot_failed_cb (GObject *source, GAsyncResult *res, gpointer user_data)
                                           app);
 }
 
-/**
- * offline_update_cb:
- **/
 static void
 offline_update_cb (GsPluginLoader *plugin_loader,
                   GAsyncResult *res,
@@ -483,9 +474,6 @@ offline_update_cb (GsPluginLoader *plugin_loader,
                                app);
 }
 
-/**
- * gs_application_reboot_failed_cb:
- **/
 static void
 gs_application_reboot_failed_cb (GObject *source,
                                 GAsyncResult *res,
diff --git a/src/gs-category.c b/src/gs-category.c
index c433993..63dd468 100644
--- a/src/gs-category.c
+++ b/src/gs-category.c
@@ -403,9 +403,6 @@ gs_category_add_child (GsCategory *category, GsCategory *subcategory)
                         g_object_ref (subcategory));
 }
 
-/**
- * gs_category_get_sort_key:
- **/
 static gchar *
 gs_category_get_sort_key (GsCategory *category)
 {
@@ -421,9 +418,6 @@ gs_category_get_sort_key (GsCategory *category)
                                gs_category_get_name (category));
 }
 
-/**
- * gs_category_sort_children_cb:
- **/
 static gint
 gs_category_sort_children_cb (gconstpointer a, gconstpointer b)
 {
diff --git a/src/gs-cmd.c b/src/gs-cmd.c
index d69790d..e373dca 100644
--- a/src/gs-cmd.c
+++ b/src/gs-cmd.c
@@ -30,9 +30,6 @@
 #include "gs-plugin-loader.h"
 #include "gs-plugin-loader-sync.h"
 
-/**
- * gs_cmd_show_results_apps:
- **/
 static void
 gs_cmd_show_results_apps (GsAppList *list)
 {
@@ -57,9 +54,6 @@ gs_cmd_show_results_apps (GsAppList *list)
        }
 }
 
-/**
- * gs_cmd_pad_spaces:
- **/
 static gchar *
 gs_cmd_pad_spaces (const gchar *text, guint length)
 {
@@ -72,9 +66,6 @@ gs_cmd_pad_spaces (const gchar *text, guint length)
        return g_string_free (str, FALSE);
 }
 
-/**
- * gs_cmd_show_results_categories:
- **/
 static void
 gs_cmd_show_results_categories (GPtrArray *list)
 {
@@ -106,9 +97,6 @@ gs_cmd_show_results_categories (GPtrArray *list)
        }
 }
 
-/**
- * gs_cmd_refine_flag_from_string:
- **/
 static GsPluginRefineFlags
 gs_cmd_refine_flag_from_string (const gchar *flag, GError **error)
 {
@@ -157,9 +145,6 @@ gs_cmd_refine_flag_from_string (const gchar *flag, GError **error)
        return 0;
 }
 
-/**
- * gs_cmd_parse_refine_flags:
- **/
 static guint64
 gs_cmd_parse_refine_flags (const gchar *extra, GError **error)
 {
@@ -181,9 +166,6 @@ gs_cmd_parse_refine_flags (const gchar *extra, GError **error)
        return refine_flags;
 }
 
-/**
- * gs_cmd_refresh_flag_from_string:
- **/
 static GsPluginRefreshFlags
 gs_cmd_refresh_flag_from_string (const gchar *flag)
 {
diff --git a/src/gs-common.c b/src/gs-common.c
index b25853c..9e7c026 100644
--- a/src/gs-common.c
+++ b/src/gs-common.c
@@ -147,9 +147,6 @@ gs_app_notify_installed (GsApp *app)
        g_application_send_notification (g_application_get_default (), "installed", n);
 }
 
-/**
- * gs_app_notify_failed_modal:
- **/
 void
 gs_app_notify_failed_modal (GsApp *app,
                            GtkWindow *parent_window,
@@ -228,9 +225,6 @@ typedef enum {
        GS_APP_LICENSE_PATENT_CONCERN   = 2
 } GsAppLicenseHint;
 
-/**
- * gs_app_notify_unavailable:
- **/
 GtkResponseType
 gs_app_notify_unavailable (GsApp *app, GtkWindow *parent)
 {
@@ -372,9 +366,6 @@ gs_app_show_url (GsApp *app, AsUrlKind kind)
                g_warning ("spawn of '%s' failed", url);
 }
 
-/**
- * gs_image_set_from_pixbuf_with_scale:
- **/
 void
 gs_image_set_from_pixbuf_with_scale (GtkImage *image, const GdkPixbuf *pixbuf, gint scale)
 {
@@ -384,9 +375,6 @@ gs_image_set_from_pixbuf_with_scale (GtkImage *image, const GdkPixbuf *pixbuf, g
        cairo_surface_destroy (surface);
 }
 
-/**
- * gs_image_set_from_pixbuf:
- **/
 void
 gs_image_set_from_pixbuf (GtkImage *image, const GdkPixbuf *pixbuf)
 {
@@ -614,9 +602,6 @@ gs_utils_get_content_rating (void)
        return content_rating_oars[0].desc;
 }
 
-/**
- * gs_utils_is_current_desktop:
- */
 gboolean
 gs_utils_is_current_desktop (const gchar *name)
 {
@@ -629,9 +614,6 @@ gs_utils_is_current_desktop (const gchar *name)
        return g_strv_contains ((const gchar * const *) names, name);
 }
 
-/**
- * gs_utils_widget_css_parsing_error_cb:
- */
 static void
 gs_utils_widget_css_parsing_error_cb (GtkCssProvider *provider,
                                      GtkCssSection *section,
@@ -672,9 +654,6 @@ gs_utils_widget_set_css_internal (GtkWidget *widget,
                                g_object_unref);
 }
 
-/**
- * gs_utils_widget_set_css_simple:
- **/
 void
 gs_utils_widget_set_css_simple (GtkWidget *widget, const gchar *css)
 {
@@ -689,9 +668,6 @@ gs_utils_widget_set_css_simple (GtkWidget *widget, const gchar *css)
        gs_utils_widget_set_css_internal (widget, class_name, str->str);
 }
 
-/**
- * gs_utils_widget_set_css_app:
- **/
 void
 gs_utils_widget_set_css_app (GsApp *app,
                             GtkWidget *widget,
diff --git a/src/gs-dbus-helper.c b/src/gs-dbus-helper.c
index 59a2c4f..3cd5aeb 100644
--- a/src/gs-dbus-helper.c
+++ b/src/gs-dbus-helper.c
@@ -57,9 +57,6 @@ typedef struct {
        gboolean                 show_warning;
 } GsDbusHelperTask;
 
-/**
- * gs_dbus_helper_task_free:
- **/
 static void
 gs_dbus_helper_task_free (GsDbusHelperTask *dtask)
 {
@@ -69,9 +66,6 @@ gs_dbus_helper_task_free (GsDbusHelperTask *dtask)
        g_free (dtask);
 }
 
-/**
- * gs_dbus_helper_task_set_interaction:
- **/
 static void
 gs_dbus_helper_task_set_interaction (GsDbusHelperTask *dtask, const gchar *interaction)
 {
@@ -107,17 +101,11 @@ gs_dbus_helper_task_set_interaction (GsDbusHelperTask *dtask, const gchar *inter
        }
 }
 
-/**
- * gs_dbus_helper_progress_cb:
- **/
 static void
 gs_dbus_helper_progress_cb (PkProgress *progress, PkProgressType type, gpointer data)
 {
 }
 
-/**
- * gs_dbus_helper_query_is_installed_cb:
- **/
 static void
 gs_dbus_helper_query_is_installed_cb (GObject *source, GAsyncResult *res, gpointer data)
 {
@@ -159,9 +147,6 @@ out:
        gs_dbus_helper_task_free (dtask);
 }
 
-/**
- * gs_dbus_helper_query_search_file_cb:
- **/
 static void
 gs_dbus_helper_query_search_file_cb (GObject *source, GAsyncResult *res, gpointer data)
 {
diff --git a/src/gs-debug.c b/src/gs-debug.c
index acd6bc0..318cfa6 100644
--- a/src/gs-debug.c
+++ b/src/gs-debug.c
@@ -37,9 +37,6 @@ struct _GsDebug
 
 G_DEFINE_TYPE (GsDebug, gs_debug, G_TYPE_OBJECT)
 
-/**
- * gs_debug_handler_cb:
- **/
 static void
 gs_debug_handler_cb (const gchar *log_domain,
                     GLogLevelFlags log_level,
@@ -111,9 +108,6 @@ gs_debug_handler_cb (const gchar *log_domain,
        }
 }
 
-/**
- * gs_debug_finalize:
- **/
 static void
 gs_debug_finalize (GObject *object)
 {
@@ -126,9 +120,6 @@ gs_debug_finalize (GObject *object)
        G_OBJECT_CLASS (gs_debug_parent_class)->finalize (object);
 }
 
-/**
- * gs_debug_class_init:
- **/
 static void
 gs_debug_class_init (GsDebugClass *klass)
 {
@@ -136,9 +127,6 @@ gs_debug_class_init (GsDebugClass *klass)
        object_class->finalize = gs_debug_finalize;
 }
 
-/**
- * gs_debug_init:
- **/
 static void
 gs_debug_init (GsDebug *debug)
 {
@@ -148,9 +136,6 @@ gs_debug_init (GsDebug *debug)
        debug->log_func_old = g_log_set_default_handler (gs_debug_handler_cb, debug);
 }
 
-/**
- * gs_debug_new:
- **/
 GsDebug *
 gs_debug_new (void)
 {
diff --git a/src/gs-language.c b/src/gs-language.c
index f35fa70..a4777c5 100644
--- a/src/gs-language.c
+++ b/src/gs-language.c
@@ -35,9 +35,6 @@ struct _GsLanguage
 
 G_DEFINE_TYPE (GsLanguage, gs_language, G_TYPE_OBJECT)
 
-/**
- * gs_language_parser_start_element:
- **/
 static void
 gs_language_parser_start_element (GMarkupParseContext *context, const gchar *element_name,
                                   const gchar **attribute_names, const gchar **attribute_values,
@@ -132,19 +129,12 @@ gs_language_populate (GsLanguage *language, GError **error)
        return TRUE;;
 }
 
-/**
- * gs_language_iso639_to_language:
- **/
 gchar *
 gs_language_iso639_to_language (GsLanguage *language, const gchar *iso639)
 {
        return g_strdup (g_hash_table_lookup (language->hash, iso639));
 }
 
-/**
- * gs_language_finalize:
- * @object: The object to finalize
- **/
 static void
 gs_language_finalize (GObject *object)
 {
@@ -159,20 +149,12 @@ gs_language_finalize (GObject *object)
        G_OBJECT_CLASS (gs_language_parent_class)->finalize (object);
 }
 
-/**
- * gs_language_init:
- * @language: This class instance
- **/
 static void
 gs_language_init (GsLanguage *language)
 {
        language->hash = g_hash_table_new_full (g_str_hash, g_str_equal, (GDestroyNotify) g_free, 
(GDestroyNotify) g_free);
 }
 
-/**
- * gs_language_class_init:
- * @klass: The GsLanguageClass
- **/
 static void
 gs_language_class_init (GsLanguageClass *klass)
 {
diff --git a/src/gs-os-release.c b/src/gs-os-release.c
index 3398511..c92d364 100644
--- a/src/gs-os-release.c
+++ b/src/gs-os-release.c
@@ -52,9 +52,6 @@ static void gs_os_release_initable_iface_init (GInitableIface *iface);
 G_DEFINE_TYPE_WITH_CODE (GsOsRelease, gs_os_release, G_TYPE_OBJECT,
                         G_IMPLEMENT_INTERFACE(G_TYPE_INITABLE, gs_os_release_initable_iface_init))
 
-/**
- * gs_os_release_initable_init:
- **/
 static gboolean
 gs_os_release_initable_init (GInitable *initable,
                             GCancellable *cancellable,
@@ -198,9 +195,6 @@ gs_os_release_get_pretty_name (GsOsRelease *os_release)
        return os_release->pretty_name;
 }
 
-/**
- * gs_os_release_finalize:
- **/
 static void
 gs_os_release_finalize (GObject *object)
 {
@@ -213,9 +207,6 @@ gs_os_release_finalize (GObject *object)
        G_OBJECT_CLASS (gs_os_release_parent_class)->finalize (object);
 }
 
-/**
- * gs_os_release_class_init:
- **/
 static void
 gs_os_release_class_init (GsOsReleaseClass *klass)
 {
@@ -223,18 +214,12 @@ gs_os_release_class_init (GsOsReleaseClass *klass)
        object_class->finalize = gs_os_release_finalize;
 }
 
-/**
- * gs_os_release_initable_iface_init:
- **/
 static void
 gs_os_release_initable_iface_init (GInitableIface *iface)
 {
        iface->init = gs_os_release_initable_init;
 }
 
-/**
- * gs_os_release_init:
- **/
 static void
 gs_os_release_init (GsOsRelease *os_release)
 {
diff --git a/src/gs-plugin-loader-sync.c b/src/gs-plugin-loader-sync.c
index 857c2e0..233bcd8 100644
--- a/src/gs-plugin-loader-sync.c
+++ b/src/gs-plugin-loader-sync.c
@@ -23,9 +23,6 @@
 
 #include "gs-plugin-loader-sync.h"
 
-/**
- * gs_plugin_loader_get_app_by_id:
- */
 GsApp *
 gs_plugin_loader_get_app_by_id (GsPluginLoader *plugin_loader,
                                const gchar *id,
@@ -66,9 +63,6 @@ gs_plugin_loader_get_installed_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_get_installed:
- **/
 GsAppList *
 gs_plugin_loader_get_installed (GsPluginLoader *plugin_loader,
                                GsPluginRefineFlags flags,
@@ -111,9 +105,6 @@ gs_plugin_loader_search_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_search:
- **/
 GsAppList *
 gs_plugin_loader_search (GsPluginLoader *plugin_loader,
                         const gchar *value,
@@ -158,9 +149,6 @@ gs_plugin_loader_get_updates_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_get_updates:
- **/
 GsAppList *
 gs_plugin_loader_get_updates (GsPluginLoader *plugin_loader,
                              GsPluginRefineFlags flags,
@@ -203,9 +191,6 @@ gs_plugin_loader_get_distro_upgrades_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_get_distro_upgrades:
- **/
 GsAppList *
 gs_plugin_loader_get_distro_upgrades (GsPluginLoader *plugin_loader,
                              GsPluginRefineFlags flags,
@@ -248,9 +233,6 @@ gs_plugin_loader_get_sources_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_get_sources:
- **/
 GsAppList *
 gs_plugin_loader_get_sources (GsPluginLoader *plugin_loader,
                              GsPluginRefineFlags flags,
@@ -293,9 +275,6 @@ gs_plugin_loader_get_popular_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_get_popular:
- **/
 GsAppList *
 gs_plugin_loader_get_popular (GsPluginLoader *plugin_loader,
                              GsPluginRefineFlags flags,
@@ -338,9 +317,6 @@ gs_plugin_loader_get_featured_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_get_featured:
- **/
 GsAppList *
 gs_plugin_loader_get_featured (GsPluginLoader *plugin_loader,
                               GsPluginRefineFlags flags,
@@ -383,9 +359,6 @@ gs_plugin_loader_get_categories_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_get_categories:
- **/
 GPtrArray *
 gs_plugin_loader_get_categories (GsPluginLoader *plugin_loader,
                                 GsPluginRefineFlags flags,
@@ -428,9 +401,6 @@ gs_plugin_loader_get_category_apps_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_get_category_apps:
- **/
 GsAppList *
 gs_plugin_loader_get_category_apps (GsPluginLoader *plugin_loader,
                                    GsCategory *category,
@@ -464,9 +434,6 @@ gs_plugin_loader_get_category_apps (GsPluginLoader *plugin_loader,
        return helper.list;
 }
 
-/**
- * gs_plugin_loader_app_refine_finish_sync:
- **/
 static void
 gs_plugin_loader_app_refine_finish_sync (GsPluginLoader *plugin_loader,
                                         GAsyncResult *res,
@@ -478,9 +445,6 @@ gs_plugin_loader_app_refine_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_app_refine:
- **/
 gboolean
 gs_plugin_loader_app_refine (GsPluginLoader *plugin_loader,
                             GsApp *app,
@@ -514,9 +478,6 @@ gs_plugin_loader_app_refine (GsPluginLoader *plugin_loader,
        return helper.ret;
 }
 
-/**
- * gs_plugin_loader_app_action_finish_sync:
- **/
 static void
 gs_plugin_loader_app_action_finish_sync (GsPluginLoader *plugin_loader,
                                         GAsyncResult *res,
@@ -528,9 +489,6 @@ gs_plugin_loader_app_action_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_app_action:
- **/
 gboolean
 gs_plugin_loader_app_action (GsPluginLoader *plugin_loader,
                             GsApp *app,
@@ -564,9 +522,6 @@ gs_plugin_loader_app_action (GsPluginLoader *plugin_loader,
        return helper.ret;
 }
 
-/**
- * gs_plugin_loader_review_action_finish_sync:
- **/
 static void
 gs_plugin_loader_review_action_finish_sync (GsPluginLoader *plugin_loader,
                                            GAsyncResult *res,
@@ -578,9 +533,6 @@ gs_plugin_loader_review_action_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_review_action:
- **/
 gboolean
 gs_plugin_loader_review_action (GsPluginLoader *plugin_loader,
                                GsApp *app,
@@ -616,9 +568,6 @@ gs_plugin_loader_review_action (GsPluginLoader *plugin_loader,
        return helper.ret;
 }
 
-/**
- * gs_plugin_loader_auth_action_finish_sync:
- **/
 static void
 gs_plugin_loader_auth_action_finish_sync (GsPluginLoader *plugin_loader,
                                          GAsyncResult *res,
@@ -630,9 +579,6 @@ gs_plugin_loader_auth_action_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_auth_action:
- **/
 gboolean
 gs_plugin_loader_auth_action (GsPluginLoader *plugin_loader,
                              GsAuth *auth,
@@ -666,9 +612,6 @@ gs_plugin_loader_auth_action (GsPluginLoader *plugin_loader,
        return helper.ret;
 }
 
-/**
- * gs_plugin_loader_refresh_finish_sync:
- **/
 static void
 gs_plugin_loader_refresh_finish_sync (GsPluginLoader *plugin_loader,
                                      GAsyncResult *res,
@@ -680,9 +623,6 @@ gs_plugin_loader_refresh_finish_sync (GsPluginLoader *plugin_loader,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_refresh:
- **/
 gboolean
 gs_plugin_loader_refresh (GsPluginLoader *plugin_loader,
                          guint cache_age,
@@ -729,9 +669,6 @@ gs_plugin_loader_file_to_app_finish_sync (GObject *source_object,
        g_main_loop_quit (helper->loop);
 }
 
-/**
- * gs_plugin_loader_file_to_app:
- **/
 GsApp *
 gs_plugin_loader_file_to_app (GsPluginLoader *plugin_loader,
                              GFile *file,
diff --git a/src/gs-plugin-loader.c b/src/gs-plugin-loader.c
index 54c6497..679300a 100644
--- a/src/gs-plugin-loader.c
+++ b/src/gs-plugin-loader.c
@@ -170,9 +170,6 @@ gs_plugin_loader_free_async_state (GsPluginLoaderAsyncState *state)
        g_slice_free (GsPluginLoaderAsyncState, state);
 }
 
-/**
- * gs_plugin_loader_app_sort_cb:
- **/
 static gint
 gs_plugin_loader_app_sort_cb (GsApp *app1, GsApp *app2, gpointer user_data)
 {
@@ -196,9 +193,6 @@ gs_plugin_loader_find_plugin (GsPluginLoader *plugin_loader,
        return NULL;
 }
 
-/**
- * gs_plugin_loader_action_start:
- **/
 static void
 gs_plugin_loader_action_start (GsPluginLoader *plugin_loader,
                               GsPlugin *plugin,
@@ -218,9 +212,6 @@ gs_plugin_loader_action_start (GsPluginLoader *plugin_loader,
        }
 }
 
-/**
- * gs_plugin_loader_action_stop:
- **/
 static void
 gs_plugin_loader_action_stop (GsPluginLoader *plugin_loader, GsPlugin *plugin)
 {
@@ -238,9 +229,6 @@ gs_plugin_loader_action_stop (GsPluginLoader *plugin_loader, GsPlugin *plugin)
        }
 }
 
-/**
- * gs_plugin_loader_run_adopt:
- **/
 static void
 gs_plugin_loader_run_adopt (GsPluginLoader *plugin_loader, GsAppList *list)
 {
@@ -289,9 +277,6 @@ gs_plugin_loader_review_score_sort_cb (gconstpointer a, gconstpointer b)
        return 0;
 }
 
-/**
- * gs_plugin_loader_run_refine_internal:
- **/
 static gboolean
 gs_plugin_loader_run_refine_internal (GsPluginLoader *plugin_loader,
                                      const gchar *function_name_parent,
@@ -472,9 +457,6 @@ gs_plugin_loader_run_refine_internal (GsPluginLoader *plugin_loader,
        return TRUE;
 }
 
-/**
- * gs_plugin_loader_run_refine:
- **/
 static gboolean
 gs_plugin_loader_run_refine (GsPluginLoader *plugin_loader,
                             const gchar *function_name_parent,
@@ -546,9 +528,6 @@ out:
 
 static void gs_plugin_loader_add_os_update_item (GsAppList *list);
 
-/**
- * gs_plugin_loader_run_results:
- **/
 static GsAppList *
 gs_plugin_loader_run_results (GsPluginLoader *plugin_loader,
                              const gchar *function_name,
@@ -644,9 +623,6 @@ gs_plugin_loader_run_results (GsPluginLoader *plugin_loader,
        return g_steal_pointer (&list);
 }
 
-/**
- * gs_plugin_loader_get_app_str:
- **/
 static const gchar *
 gs_plugin_loader_get_app_str (GsApp *app)
 {
@@ -689,9 +665,6 @@ gs_plugin_loader_app_set_prio (GsApp *app, gpointer user_data)
        return TRUE;
 }
 
-/**
- * gs_plugin_loader_app_is_valid_installed:
- **/
 static gboolean
 gs_plugin_loader_app_is_valid_installed (GsApp *app, gpointer user_data)
 {
@@ -717,9 +690,6 @@ gs_plugin_loader_app_is_valid_installed (GsApp *app, gpointer user_data)
        return TRUE;
 }
 
-/**
- * gs_plugin_loader_app_is_valid:
- **/
 static gboolean
 gs_plugin_loader_app_is_valid (GsApp *app, gpointer user_data)
 {
@@ -797,9 +767,6 @@ gs_plugin_loader_app_is_valid (GsApp *app, gpointer user_data)
        return TRUE;
 }
 
-/**
- * gs_plugin_loader_filter_qt_for_gtk:
- **/
 static gboolean
 gs_plugin_loader_filter_qt_for_gtk (GsApp *app, gpointer user_data)
 {
@@ -832,18 +799,12 @@ gs_plugin_loader_filter_qt_for_gtk (GsApp *app, gpointer user_data)
        return TRUE;
 }
 
-/**
- * gs_plugin_loader_app_is_non_compulsory:
- **/
 static gboolean
 gs_plugin_loader_app_is_non_compulsory (GsApp *app, gpointer user_data)
 {
        return !gs_app_has_quirk (app, AS_APP_QUIRK_COMPULSORY);
 }
 
-/**
- * gs_plugin_loader_app_is_non_installed:
- **/
 static gboolean
 gs_plugin_loader_app_is_non_installed (GsApp *app, gpointer user_data)
 {
@@ -856,9 +817,6 @@ gs_plugin_loader_app_is_non_installed (GsApp *app, gpointer user_data)
        return TRUE;
 }
 
-/**
- * gs_plugin_loader_get_app_is_compatible:
- */
 static gboolean
 gs_plugin_loader_get_app_is_compatible (GsApp *app, gpointer user_data)
 {
@@ -880,9 +838,6 @@ gs_plugin_loader_get_app_is_compatible (GsApp *app, gpointer user_data)
        return FALSE;
 }
 
-/**
- * gs_plugin_loader_set_app_error:
- **/
 static void
 gs_plugin_loader_set_app_error (GsApp *app, GError *error)
 {
@@ -912,9 +867,6 @@ gs_plugin_loader_is_auth_error (GError *err)
        return FALSE;
 }
 
-/**
- * gs_plugin_loader_run_action:
- **/
 static gboolean
 gs_plugin_loader_run_action (GsPluginLoader *plugin_loader,
                             GsApp *app,
@@ -993,9 +945,6 @@ gs_plugin_loader_run_action (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_merge_into_os_update:
- **/
 static gboolean
 gs_plugin_loader_merge_into_os_update (GsApp *app)
 {
@@ -1006,9 +955,6 @@ gs_plugin_loader_merge_into_os_update (GsApp *app)
        return FALSE;
 }
 
-/**
- * gs_plugin_loader_add_os_update_item:
- **/
 static void
 gs_plugin_loader_add_os_update_item (GsAppList *list)
 {
@@ -1062,9 +1008,6 @@ gs_plugin_loader_add_os_update_item (GsAppList *list)
        gs_app_list_add (list, app_os);
 }
 
-/**
- * gs_plugin_loader_get_updates_thread_cb:
- **/
 static void
 gs_plugin_loader_get_updates_thread_cb (GTask *task,
                                        gpointer object,
@@ -1167,9 +1110,6 @@ gs_plugin_loader_get_updates_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_get_distro_upgrades_thread_cb:
- **/
 static void
 gs_plugin_loader_get_distro_upgrades_thread_cb (GTask *task,
                                                gpointer object,
@@ -1247,9 +1187,6 @@ gs_plugin_loader_get_distro_upgrades_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_get_unvoted_reviews_thread_cb:
- **/
 static void
 gs_plugin_loader_get_unvoted_reviews_thread_cb (GTask *task,
                                                gpointer object,
@@ -1327,9 +1264,6 @@ gs_plugin_loader_get_unvoted_reviews_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_get_sources_thread_cb:
- **/
 static void
 gs_plugin_loader_get_sources_thread_cb (GTask *task,
                                        gpointer object,
@@ -1410,9 +1344,6 @@ gs_plugin_loader_get_sources_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_get_installed_thread_cb:
- **/
 static void
 gs_plugin_loader_get_installed_thread_cb (GTask *task,
                                          gpointer object,
@@ -1506,9 +1437,6 @@ gs_plugin_loader_get_installed_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_get_popular_thread_cb:
- **/
 static void
 gs_plugin_loader_get_popular_thread_cb (GTask *task,
                                        gpointer object,
@@ -1562,9 +1490,6 @@ gs_plugin_loader_get_popular_thread_cb (GTask *task,
        g_task_return_pointer (task, g_object_ref (state->list), (GDestroyNotify) g_object_unref);
 }
 
-/**
- * gs_plugin_loader_get_popular_async:
- **/
 void
 gs_plugin_loader_get_popular_async (GsPluginLoader *plugin_loader,
                                    GsPluginRefineFlags flags,
@@ -1608,9 +1533,6 @@ gs_plugin_loader_get_popular_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_featured_debug:
- **/
 static gboolean
 gs_plugin_loader_featured_debug (GsApp *app, gpointer user_data)
 {
@@ -1620,9 +1542,6 @@ gs_plugin_loader_featured_debug (GsApp *app, gpointer user_data)
        return FALSE;
 }
 
-/**
- * gs_plugin_loader_get_featured_thread_cb:
- **/
 static void
 gs_plugin_loader_get_featured_thread_cb (GTask *task,
                                         gpointer object,
@@ -1724,9 +1643,6 @@ gs_plugin_loader_get_featured_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_convert_unavailable_app:
- **/
 static gboolean
 gs_plugin_loader_convert_unavailable_app (GsApp *app, const gchar *search)
 {
@@ -1762,9 +1678,6 @@ gs_plugin_loader_convert_unavailable_app (GsApp *app, const gchar *search)
        return TRUE;
 }
 
-/**
- * gs_plugin_loader_convert_unavailable:
- **/
 static void
 gs_plugin_loader_convert_unavailable (GsAppList *list, const gchar *search)
 {
@@ -1788,9 +1701,6 @@ gs_plugin_loader_convert_unavailable (GsAppList *list, const gchar *search)
        }
 }
 
-/**
- * gs_plugin_loader_search_thread_cb:
- **/
 static void
 gs_plugin_loader_search_thread_cb (GTask *task,
                                   gpointer object,
@@ -1960,9 +1870,6 @@ gs_plugin_loader_search_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_search_files_thread_cb:
- **/
 static void
 gs_plugin_loader_search_files_thread_cb (GTask *task,
                                          gpointer object,
@@ -2128,9 +2035,6 @@ gs_plugin_loader_search_files_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_search_what_provides_thread_cb:
- **/
 static void
 gs_plugin_loader_search_what_provides_thread_cb (GTask *task,
                                                  gpointer object,
@@ -2296,9 +2200,6 @@ gs_plugin_loader_search_what_provides_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_category_sort_cb:
- **/
 static gint
 gs_plugin_loader_category_sort_cb (gconstpointer a, gconstpointer b)
 {
@@ -2348,9 +2249,6 @@ gs_plugin_loader_fix_category_all (GsCategory *category)
        }
 }
 
-/**
- * gs_plugin_loader_get_categories_thread_cb:
- **/
 static void
 gs_plugin_loader_get_categories_thread_cb (GTask *task,
                                           gpointer object,
@@ -2482,9 +2380,6 @@ gs_plugin_loader_get_categories_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_get_category_apps_thread_cb:
- **/
 static void
 gs_plugin_loader_get_category_apps_thread_cb (GTask *task,
                                              gpointer object,
@@ -2637,9 +2532,6 @@ gs_plugin_loader_get_category_apps_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_app_refine_thread_cb:
- **/
 static void
 gs_plugin_loader_app_refine_thread_cb (GTask *task,
                                       gpointer object,
@@ -2736,9 +2628,6 @@ emit_pending_apps_idle (gpointer loader)
        return G_SOURCE_REMOVE;
 }
 
-/**
- * gs_plugin_loader_app_action_thread_cb:
- **/
 static void
 gs_plugin_loader_app_action_thread_cb (GTask *task,
                                       gpointer object,
@@ -2814,9 +2703,6 @@ gs_plugin_loader_app_action_thread_cb (GTask *task,
        g_idle_add (emit_pending_apps_idle, g_object_ref (plugin_loader));
 }
 
-/**
- * gs_plugin_loader_review_action_thread_cb:
- **/
 static void
 gs_plugin_loader_review_action_thread_cb (GTask *task,
                                          gpointer object,
@@ -3145,9 +3031,6 @@ gs_plugin_loader_app_action_async (GsPluginLoader *plugin_loader,
        g_task_run_in_thread (task, gs_plugin_loader_app_action_thread_cb);
 }
 
-/**
- * gs_plugin_loader_review_action_async:
- **/
 void
 gs_plugin_loader_review_action_async (GsPluginLoader *plugin_loader,
                                      GsApp *app,
@@ -3199,9 +3082,6 @@ gs_plugin_loader_review_action_async (GsPluginLoader *plugin_loader,
        g_task_run_in_thread (task, gs_plugin_loader_review_action_thread_cb);
 }
 
-/**
- * gs_plugin_loader_review_action_finish:
- **/
 gboolean
 gs_plugin_loader_review_action_finish (GsPluginLoader *plugin_loader,
                                       GAsyncResult *res,
@@ -3217,9 +3097,6 @@ gs_plugin_loader_review_action_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_auth_action_thread_cb:
- **/
 static void
 gs_plugin_loader_auth_action_thread_cb (GTask *task,
                                          gpointer object,
@@ -3279,9 +3156,6 @@ gs_plugin_loader_auth_action_thread_cb (GTask *task,
        g_task_return_boolean (task, TRUE);
 }
 
-/**
- * gs_plugin_loader_auth_action_async:
- **/
 void
 gs_plugin_loader_auth_action_async (GsPluginLoader *plugin_loader,
                                    GsAuth *auth,
@@ -3325,9 +3199,6 @@ gs_plugin_loader_auth_action_async (GsPluginLoader *plugin_loader,
        g_task_run_in_thread (task, gs_plugin_loader_auth_action_thread_cb);
 }
 
-/**
- * gs_plugin_loader_auth_action_finish:
- **/
 gboolean
 gs_plugin_loader_auth_action_finish (GsPluginLoader *plugin_loader,
                                     GAsyncResult *res,
@@ -3363,9 +3234,6 @@ gs_plugin_loader_app_action_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_get_pending:
- **/
 GsAppList *
 gs_plugin_loader_get_pending (GsPluginLoader *plugin_loader)
 {
@@ -3384,9 +3252,6 @@ gs_plugin_loader_get_pending (GsPluginLoader *plugin_loader)
        return array;
 }
 
-/**
- * gs_plugin_loader_run:
- **/
 static void
 gs_plugin_loader_run (GsPluginLoader *plugin_loader, const gchar *function_name)
 {
@@ -3416,9 +3281,6 @@ gs_plugin_loader_run (GsPluginLoader *plugin_loader, const gchar *function_name)
        }
 }
 
-/**
- * gs_plugin_loader_get_enabled:
- */
 gboolean
 gs_plugin_loader_get_enabled (GsPluginLoader *plugin_loader,
                              const gchar *plugin_name)
@@ -3430,9 +3292,6 @@ gs_plugin_loader_get_enabled (GsPluginLoader *plugin_loader,
        return gs_plugin_get_enabled (plugin);
 }
 
-/**
- * gs_plugin_loader_status_changed_cb:
- */
 static void
 gs_plugin_loader_status_changed_cb (GsPlugin *plugin,
                                    GsApp *app,
@@ -3463,9 +3322,6 @@ gs_plugin_loader_status_changed_cb (GsPlugin *plugin,
                       0, app, status);
 }
 
-/**
- * gs_plugin_loader_updates_changed_delay_cb:
- */
 static gboolean
 gs_plugin_loader_updates_changed_delay_cb (gpointer user_data)
 {
@@ -3481,9 +3337,6 @@ gs_plugin_loader_updates_changed_delay_cb (gpointer user_data)
        return FALSE;
 }
 
-/**
- * gs_plugin_loader_updates_changed_cb:
- */
 static void
 gs_plugin_loader_updates_changed_cb (GsPlugin *plugin,
                                     GsPluginLoader *plugin_loader)
@@ -3525,9 +3378,6 @@ gs_plugin_loader_reload_cb (GsPlugin *plugin,
                                       g_object_ref (plugin_loader));
 }
 
-/**
- * gs_plugin_loader_open_plugin:
- */
 static void
 gs_plugin_loader_open_plugin (GsPluginLoader *plugin_loader,
                              const gchar *filename)
@@ -3562,9 +3412,6 @@ gs_plugin_loader_open_plugin (GsPluginLoader *plugin_loader,
        g_ptr_array_add (priv->plugins, plugin);
 }
 
-/**
- * gs_plugin_loader_set_scale:
- */
 void
 gs_plugin_loader_set_scale (GsPluginLoader *plugin_loader, gint scale)
 {
@@ -3580,9 +3427,6 @@ gs_plugin_loader_set_scale (GsPluginLoader *plugin_loader, gint scale)
        }
 }
 
-/**
- * gs_plugin_loader_get_scale:
- */
 gint
 gs_plugin_loader_get_scale (GsPluginLoader *plugin_loader)
 {
@@ -3590,9 +3434,6 @@ gs_plugin_loader_get_scale (GsPluginLoader *plugin_loader)
        return priv->scale;
 }
 
-/**
- * gs_plugin_loader_get_auth_by_id:
- */
 GsAuth *
 gs_plugin_loader_get_auth_by_id (GsPluginLoader *plugin_loader,
                                 const gchar *provider_id)
@@ -3609,9 +3450,6 @@ gs_plugin_loader_get_auth_by_id (GsPluginLoader *plugin_loader,
        return NULL;
 }
 
-/**
- * gs_plugin_loader_set_location:
- */
 void
 gs_plugin_loader_set_location (GsPluginLoader *plugin_loader, const gchar *location)
 {
@@ -3631,9 +3469,6 @@ gs_plugin_loader_set_location (GsPluginLoader *plugin_loader, const gchar *locat
        priv->location = g_build_filename (LIBDIR, filename, NULL);
 }
 
-/**
- * gs_plugin_loader_plugin_sort_fn:
- */
 static gint
 gs_plugin_loader_plugin_sort_fn (gconstpointer a, gconstpointer b)
 {
@@ -3914,9 +3749,6 @@ gs_plugin_loader_setup (GsPluginLoader *plugin_loader,
        return TRUE;
 }
 
-/**
- * gs_plugin_loader_dump_state:
- **/
 void
 gs_plugin_loader_dump_state (GsPluginLoader *plugin_loader)
 {
@@ -3934,10 +3766,6 @@ gs_plugin_loader_dump_state (GsPluginLoader *plugin_loader)
        }
 }
 
-/**
- * gs_plugin_loader_dispose:
- * @object: The object to dispose
- **/
 static void
 gs_plugin_loader_dispose (GObject *object)
 {
@@ -3961,10 +3789,6 @@ gs_plugin_loader_dispose (GObject *object)
        G_OBJECT_CLASS (gs_plugin_loader_parent_class)->dispose (object);
 }
 
-/**
- * gs_plugin_loader_finalize:
- * @object: The object to finalize
- **/
 static void
 gs_plugin_loader_finalize (GObject *object)
 {
@@ -3980,10 +3804,6 @@ gs_plugin_loader_finalize (GObject *object)
        G_OBJECT_CLASS (gs_plugin_loader_parent_class)->finalize (object);
 }
 
-/**
- * gs_plugin_loader_class_init:
- * @klass: The GsPluginLoaderClass
- **/
 static void
 gs_plugin_loader_class_init (GsPluginLoaderClass *klass)
 {
@@ -4018,9 +3838,6 @@ gs_plugin_loader_class_init (GsPluginLoaderClass *klass)
                              G_TYPE_NONE, 0);
 }
 
-/**
- * gs_plugin_loader_init:
- **/
 static void
 gs_plugin_loader_init (GsPluginLoader *plugin_loader)
 {
@@ -4088,9 +3905,6 @@ gs_plugin_loader_new (void)
        return GS_PLUGIN_LOADER (plugin_loader);
 }
 
-/**
- * gs_plugin_loader_app_installed_cb:
- **/
 static void
 gs_plugin_loader_app_installed_cb (GObject *source,
                                   GAsyncResult *res,
@@ -4111,9 +3925,6 @@ gs_plugin_loader_app_installed_cb (GObject *source,
        }
 }
 
-/**
- * gs_plugin_loader_set_network_status:
- **/
 void
 gs_plugin_loader_set_network_status (GsPluginLoader *plugin_loader,
                                     gboolean online)
@@ -4154,9 +3965,6 @@ gs_plugin_loader_set_network_status (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_run_refresh:
- **/
 static gboolean
 gs_plugin_loader_run_refresh (GsPluginLoader *plugin_loader,
                              guint cache_age,
@@ -4230,9 +4038,6 @@ gs_plugin_loader_run_refresh (GsPluginLoader *plugin_loader,
        return TRUE;
 }
 
-/**
- * gs_plugin_loader_refresh_thread_cb:
- **/
 static void
 gs_plugin_loader_refresh_thread_cb (GTask *task,
                                    gpointer object,
@@ -4309,9 +4114,6 @@ gs_plugin_loader_refresh_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_file_to_app_thread_cb:
- **/
 static void
 gs_plugin_loader_file_to_app_thread_cb (GTask *task,
                                        gpointer object,
@@ -4491,9 +4293,6 @@ gs_plugin_loader_file_to_app_finish (GsPluginLoader *plugin_loader,
 
 /******************************************************************************/
 
-/**
- * gs_plugin_loader_update_thread_cb:
- **/
 static void
 gs_plugin_loader_update_thread_cb (GTask *task,
                                   gpointer object,
@@ -4633,9 +4432,6 @@ gs_plugin_loader_update_async (GsPluginLoader *plugin_loader,
        g_task_run_in_thread (task, gs_plugin_loader_update_thread_cb);
 }
 
-/**
- * gs_plugin_loader_update_finish:
- **/
 gboolean
 gs_plugin_loader_update_finish (GsPluginLoader *plugin_loader,
                                GAsyncResult *res,
diff --git a/src/gs-plugin.c b/src/gs-plugin.c
index 58661a6..07e33ca 100644
--- a/src/gs-plugin.c
+++ b/src/gs-plugin.c
@@ -167,9 +167,6 @@ gs_plugin_create (const gchar *filename, GError **error)
        return plugin;
 }
 
-/**
- * gs_plugin_finalize:
- **/
 static void
 gs_plugin_finalize (GObject *object)
 {
@@ -257,9 +254,6 @@ gs_plugin_action_start (GsPlugin *plugin, gboolean exclusive)
        priv->flags |= GS_PLUGIN_FLAGS_RUNNING_SELF;
 }
 
-/**
- * gs_plugin_action_delay_cb:
- **/
 static gboolean
 gs_plugin_action_delay_cb (gpointer user_data)
 {
@@ -684,9 +678,6 @@ typedef struct {
        guint            percentage;
 } GsPluginStatusHelper;
 
-/**
- * gs_plugin_status_update_cb:
- **/
 static gboolean
 gs_plugin_status_update_cb (gpointer user_data)
 {
@@ -722,9 +713,6 @@ gs_plugin_status_update (GsPlugin *plugin, GsApp *app, GsPluginStatus status)
        g_idle_add (gs_plugin_status_update_cb, helper);
 }
 
-/**
- * gs_plugin_app_launch_cb:
- **/
 static gboolean
 gs_plugin_app_launch_cb (gpointer user_data)
 {
@@ -782,9 +770,6 @@ gs_plugin_app_launch (GsPlugin *plugin, GsApp *app, GError **error)
        return TRUE;
 }
 
-/**
- * gs_plugin_updates_changed_cb:
- **/
 static gboolean
 gs_plugin_updates_changed_cb (gpointer user_data)
 {
@@ -837,9 +822,6 @@ typedef struct {
        GCancellable    *cancellable;
 } GsPluginDownloadHelper;
 
-/**
- * gs_plugin_download_chunk_cb:
- **/
 static void
 gs_plugin_download_chunk_cb (SoupMessage *msg, SoupBuffer *chunk,
                             GsPluginDownloadHelper *helper)
@@ -1074,9 +1056,6 @@ gs_plugin_cache_invalidate (GsPlugin *plugin)
        g_hash_table_remove_all (priv->cache);
 }
 
-/**
- * gs_plugin_set_property:
- */
 static void
 gs_plugin_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
 {
@@ -1092,9 +1071,6 @@ gs_plugin_set_property (GObject *object, guint prop_id, const GValue *value, GPa
        }
 }
 
-/**
- * gs_plugin_get_property:
- */
 static void
 gs_plugin_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
 {
@@ -1110,9 +1086,6 @@ gs_plugin_get_property (GObject *object, guint prop_id, GValue *value, GParamSpe
        }
 }
 
-/**
- * gs_plugin_class_init:
- */
 static void
 gs_plugin_class_init (GsPluginClass *klass)
 {
@@ -1149,9 +1122,6 @@ gs_plugin_class_init (GsPluginClass *klass)
                              G_TYPE_NONE, 0);
 }
 
-/**
- * gs_plugin_init:
- */
 static void
 gs_plugin_init (GsPlugin *plugin)
 {
diff --git a/src/gs-review-bar.c b/src/gs-review-bar.c
index b556789..1077040 100644
--- a/src/gs-review-bar.c
+++ b/src/gs-review-bar.c
@@ -33,9 +33,6 @@ struct _GsReviewBar
 
 G_DEFINE_TYPE (GsReviewBar, gs_review_bar, GTK_TYPE_BIN)
 
-/**
- * gs_review_bar_set_fraction:
- **/
 void
 gs_review_bar_set_fraction (GsReviewBar *bar, gdouble fraction)
 {
@@ -43,17 +40,11 @@ gs_review_bar_set_fraction (GsReviewBar *bar, gdouble fraction)
        bar->fraction = fraction;
 }
 
-/**
- * gs_review_bar_init:
- **/
 static void
 gs_review_bar_init (GsReviewBar *bar)
 {
 }
 
-/**
- * gs_review_bar_draw:
- **/
 static gboolean
 gs_review_bar_draw (GtkWidget *widget, cairo_t *cr)
 {
@@ -83,9 +74,6 @@ gs_review_bar_draw (GtkWidget *widget, cairo_t *cr)
        return GTK_WIDGET_CLASS (gs_review_bar_parent_class)->draw (widget, cr);
 }
 
-/**
- * gs_review_bar_class_init:
- **/
 static void
 gs_review_bar_class_init (GsReviewBarClass *klass)
 {
@@ -93,9 +81,6 @@ gs_review_bar_class_init (GsReviewBarClass *klass)
        widget_class->draw = gs_review_bar_draw;
 }
 
-/**
- * gs_review_bar_new:
- **/
 GtkWidget *
 gs_review_bar_new (void)
 {
diff --git a/src/gs-review-histogram.c b/src/gs-review-histogram.c
index d98616a..3f54d96 100644
--- a/src/gs-review-histogram.c
+++ b/src/gs-review-histogram.c
@@ -52,9 +52,6 @@ set_label (GtkWidget *label, guint value)
        gtk_label_set_text (GTK_LABEL (label), text);
 }
 
-/**
- * gs_review_histogram_set_ratings:
- **/
 void
 gs_review_histogram_set_ratings (GsReviewHistogram *histogram,
                                 GArray *review_ratings)
@@ -117,9 +114,6 @@ gs_review_histogram_class_init (GsReviewHistogramClass *klass)
        gtk_widget_class_bind_template_child_private (widget_class, GsReviewHistogram, label_total);
 }
 
-/**
- * gs_review_histogram_new:
- **/
 GtkWidget *
 gs_review_histogram_new (void)
 {
diff --git a/src/gs-screenshot-image.c b/src/gs-screenshot-image.c
index 661b157..71bff51 100644
--- a/src/gs-screenshot-image.c
+++ b/src/gs-screenshot-image.c
@@ -55,9 +55,6 @@ struct _GsScreenshotImage
 
 G_DEFINE_TYPE (GsScreenshotImage, gs_screenshot_image, GTK_TYPE_BIN)
 
-/**
- * gs_screenshot_image_get_screenshot:
- **/
 AsScreenshot *
 gs_screenshot_image_get_screenshot (GsScreenshotImage *ssimg)
 {
@@ -65,9 +62,6 @@ gs_screenshot_image_get_screenshot (GsScreenshotImage *ssimg)
        return ssimg->screenshot;
 }
 
-/**
- * gs_screenshot_image_set_error:
- **/
 static void
 gs_screenshot_image_set_error (GsScreenshotImage *ssimg, const gchar *message)
 {
@@ -82,9 +76,6 @@ gs_screenshot_image_set_error (GsScreenshotImage *ssimg, const gchar *message)
                gtk_widget_show (ssimg->label_error);
 }
 
-/**
- * gs_screenshot_image_get_desktop_pixbuf:
- **/
 static GdkPixbuf *
 gs_screenshot_image_get_desktop_pixbuf (GsScreenshotImage *ssimg)
 {
@@ -101,9 +92,6 @@ gs_screenshot_image_get_desktop_pixbuf (GsScreenshotImage *ssimg)
                                          ssimg->width, ssimg->height);
 }
 
-/**
- * gs_screenshot_image_use_desktop_background:
- **/
 static gboolean
 gs_screenshot_image_use_desktop_background (GsScreenshotImage *ssimg, GdkPixbuf *pixbuf)
 {
@@ -122,9 +110,6 @@ gs_screenshot_image_use_desktop_background (GsScreenshotImage *ssimg, GdkPixbuf
        return (as_image_get_alpha_flags (im) & AS_IMAGE_ALPHA_FLAG_INTERNAL) > 0;
 }
 
-/**
- * as_screenshot_show_image:
- **/
 static void
 as_screenshot_show_image (GsScreenshotImage *ssimg)
 {
@@ -178,9 +163,6 @@ as_screenshot_show_image (GsScreenshotImage *ssimg)
        gtk_widget_show (GTK_WIDGET (ssimg));
 }
 
-/**
- * gs_screenshot_image_show_blurred:
- **/
 static void
 gs_screenshot_image_show_blurred (GsScreenshotImage *ssimg,
                                  const gchar *filename_thumb)
@@ -208,9 +190,6 @@ gs_screenshot_image_show_blurred (GsScreenshotImage *ssimg,
        }
 }
 
-/**
- * gs_screenshot_image_complete_cb:
- **/
 static void
 gs_screenshot_image_complete_cb (SoupSession *session,
                                 SoupMessage *msg,
@@ -281,9 +260,6 @@ gs_screenshot_image_complete_cb (SoupSession *session,
        as_screenshot_show_image (ssimg);
 }
 
-/**
- * gs_screenshot_image_set_screenshot:
- **/
 void
 gs_screenshot_image_set_screenshot (GsScreenshotImage *ssimg,
                                    AsScreenshot *screenshot)
@@ -298,9 +274,6 @@ gs_screenshot_image_set_screenshot (GsScreenshotImage *ssimg,
        ssimg->screenshot = g_object_ref (screenshot);
 }
 
-/**
- * gs_screenshot_image_set_size:
- **/
 void
 gs_screenshot_image_set_size (GsScreenshotImage *ssimg,
                              guint width, guint height)
@@ -314,9 +287,6 @@ gs_screenshot_image_set_size (GsScreenshotImage *ssimg,
        gtk_widget_set_size_request (ssimg->stack, width, height);
 }
 
-/**
- * gs_screenshot_image_set_use_desktop_background:
- **/
 void
 gs_screenshot_image_set_use_desktop_background (GsScreenshotImage *ssimg,
                                                 gboolean use_desktop_background)
@@ -325,9 +295,6 @@ gs_screenshot_image_set_use_desktop_background (GsScreenshotImage *ssimg,
        ssimg->use_desktop_background = use_desktop_background;
 }
 
-/**
- * gs_screenshot_get_cachefn_for_url:
- **/
 static gchar *
 gs_screenshot_get_cachefn_for_url (const gchar *url)
 {
@@ -338,9 +305,6 @@ gs_screenshot_get_cachefn_for_url (const gchar *url)
        return g_strdup_printf ("%s-%s", checksum, basename);
 }
 
-/**
- * gs_screenshot_image_load_async:
- **/
 void
 gs_screenshot_image_load_async (GsScreenshotImage *ssimg,
                                GCancellable *cancellable)
@@ -478,9 +442,6 @@ gs_screenshot_image_load_async (GsScreenshotImage *ssimg,
        soup_uri_free (base_uri);
 }
 
-/**
- * gs_screenshot_image_destroy:
- **/
 static void
 gs_screenshot_image_destroy (GtkWidget *widget)
 {
@@ -500,9 +461,6 @@ gs_screenshot_image_destroy (GtkWidget *widget)
        GTK_WIDGET_CLASS (gs_screenshot_image_parent_class)->destroy (widget);
 }
 
-/**
- * gs_screenshot_image_init:
- **/
 static void
 gs_screenshot_image_init (GsScreenshotImage *ssimg)
 {
@@ -520,9 +478,6 @@ gs_screenshot_image_init (GsScreenshotImage *ssimg)
        }
 }
 
-/**
- * gs_screenshot_image_draw:
- **/
 static gboolean
 gs_screenshot_image_draw (GtkWidget *widget, cairo_t *cr)
 {
@@ -541,9 +496,6 @@ gs_screenshot_image_draw (GtkWidget *widget, cairo_t *cr)
        return GTK_WIDGET_CLASS (gs_screenshot_image_parent_class)->draw (widget, cr);
 }
 
-/**
- * gs_screenshot_image_class_init:
- **/
 static void
 gs_screenshot_image_class_init (GsScreenshotImageClass *klass)
 {
@@ -562,9 +514,6 @@ gs_screenshot_image_class_init (GsScreenshotImageClass *klass)
        gtk_widget_class_bind_template_child (widget_class, GsScreenshotImage, label_error);
 }
 
-/**
- * gs_screenshot_image_new:
- **/
 GtkWidget *
 gs_screenshot_image_new (SoupSession *session)
 {
diff --git a/src/gs-self-test.c b/src/gs-self-test.c
index 00c2908..f5b1213 100644
--- a/src/gs-self-test.c
+++ b/src/gs-self-test.c
@@ -34,9 +34,6 @@
 #include "gs-plugin-loader-sync.h"
 #include "gs-utils.h"
 
-/**
- * gs_test_get_filename:
- **/
 static gchar *
 gs_test_get_filename (const gchar *filename)
 {
diff --git a/src/gs-shell-category.c b/src/gs-shell-category.c
index c40bc14..c9d0b50 100644
--- a/src/gs-shell-category.c
+++ b/src/gs-shell-category.c
@@ -71,9 +71,6 @@ app_tile_clicked (GsAppTile *tile, gpointer data)
        gs_shell_show_app (self->shell, app);
 }
 
-/**
- * gs_shell_category_get_apps_cb:
- **/
 static void
 gs_shell_category_get_apps_cb (GObject *source_object,
                               GAsyncResult *res,
diff --git a/src/gs-shell-details.c b/src/gs-shell-details.c
index d234fe4..3321ac6 100644
--- a/src/gs-shell-details.c
+++ b/src/gs-shell-details.c
@@ -123,9 +123,6 @@ struct _GsShellDetails
 
 G_DEFINE_TYPE (GsShellDetails, gs_shell_details, GS_TYPE_PAGE)
 
-/**
- * gs_shell_details_set_state:
- **/
 static void
 gs_shell_details_set_state (GsShellDetails *self,
                            GsShellDetailsState state)
@@ -210,9 +207,6 @@ gs_shell_details_update_shortcut_button (GsShellDetails *self)
        }
 }
 
-/**
- * gs_shell_details_switch_to:
- **/
 static void
 gs_shell_details_switch_to (GsPage *page, gboolean scroll_up)
 {
@@ -456,9 +450,6 @@ gs_shell_details_switch_to_idle (gpointer user_data)
        return G_SOURCE_REMOVE;
 }
 
-/**
- * gs_shell_details_notify_state_changed_cb:
- **/
 static void
 gs_shell_details_notify_state_changed_cb (GsApp *app,
                                          GParamSpec *pspec,
@@ -489,9 +480,6 @@ gs_shell_details_screenshot_selected_cb (GtkListBox *list,
        gs_screenshot_image_load_async (ssmain, NULL);
 }
 
-/**
- * gs_shell_details_refresh_screenshots:
- **/
 static void
 gs_shell_details_refresh_screenshots (GsShellDetails *self)
 {
@@ -594,18 +582,12 @@ gs_shell_details_refresh_screenshots (GsShellDetails *self)
                          self);
 }
 
-/**
- * gs_shell_details_website_cb:
- **/
 static void
 gs_shell_details_website_cb (GtkWidget *widget, GsShellDetails *self)
 {
        gs_app_show_url (self->app, AS_URL_KIND_HOMEPAGE);
 }
 
-/**
- * gs_shell_details_set_description:
- **/
 static void
 gs_shell_details_set_description (GsShellDetails *self, const gchar *tmp)
 {
@@ -673,9 +655,6 @@ gs_shell_details_history_cb (GtkLabel *label,
        return TRUE;
 }
 
-/**
- * gs_shell_details_get_license_markup:
- **/
 static gchar *
 gs_shell_details_get_license_markup (const gchar *license)
 {
@@ -772,9 +751,6 @@ gs_shell_details_get_license_markup (const gchar *license)
        return g_string_free (urld, FALSE);
 }
 
-/**
- * gs_shell_details_refresh_all:
- **/
 static void
 gs_shell_details_refresh_all (GsShellDetails *self)
 {
@@ -1193,9 +1169,6 @@ gs_shell_details_authenticate_cb (GtkDialog *dialog,
                                              helper);
 }
 
-/**
- * gs_shell_details_app_set_review_cb:
- **/
 static void
 gs_shell_details_app_set_review_cb (GObject *source,
                                    GAsyncResult *res,
@@ -1367,9 +1340,6 @@ gs_shell_details_refresh_reviews (GsShellDetails *self)
        gtk_widget_set_visible (self->button_review, show_review_button);
 }
 
-/**
- * gs_shell_details_app_refine_cb:
- **/
 static void
 gs_shell_details_app_refine_cb (GObject *source,
                                GAsyncResult *res,
@@ -1411,9 +1381,6 @@ gs_shell_details_app_refine_cb (GObject *source,
        gs_shell_details_set_state (self, GS_SHELL_DETAILS_STATE_READY);
 }
 
-/**
- * gs_shell_details_failed_response_cb:
- **/
 static void
 gs_shell_details_failed_response_cb (GtkDialog *dialog,
                                     gint response,
@@ -1426,9 +1393,6 @@ gs_shell_details_failed_response_cb (GtkDialog *dialog,
        gs_shell_set_mode (self->shell, GS_SHELL_MODE_OVERVIEW);
 }
 
-/**
- * gs_shell_details_file_to_app_cb:
- **/
 static void
 gs_shell_details_file_to_app_cb (GObject *source,
                                 GAsyncResult *res,
@@ -1505,9 +1469,6 @@ gs_shell_details_file_to_app_cb (GObject *source,
        gs_shell_details_set_state (self, GS_SHELL_DETAILS_STATE_READY);
 }
 
-/**
- * gs_shell_details_set_filename:
- **/
 void
 gs_shell_details_set_filename (GsShellDetails *self, const gchar *filename)
 {
@@ -1526,9 +1487,6 @@ gs_shell_details_set_filename (GsShellDetails *self, const gchar *filename)
                                            self);
 }
 
-/**
- * gs_shell_details_load:
- **/
 static void
 gs_shell_details_load (GsShellDetails *self)
 {
@@ -1561,9 +1519,6 @@ gs_shell_details_reload (GsPage *page)
                gs_shell_details_load (self);
 }
 
-/**
- * gs_shell_details_set_app:
- **/
 void
 gs_shell_details_set_app (GsShellDetails *self, GsApp *app)
 {
@@ -1608,18 +1563,12 @@ gs_shell_details_get_app (GsShellDetails *self)
        return self->app;
 }
 
-/**
- * gs_shell_details_app_remove_button_cb:
- **/
 static void
 gs_shell_details_app_remove_button_cb (GtkWidget *widget, GsShellDetails *self)
 {
        gs_page_remove_app (GS_PAGE (self), self->app);
 }
 
-/**
- * gs_shell_details_app_install_button_cb:
- **/
 static void
 gs_shell_details_app_install_button_cb (GtkWidget *widget, GsShellDetails *self)
 {
@@ -1640,9 +1589,6 @@ gs_shell_details_app_install_button_cb (GtkWidget *widget, GsShellDetails *self)
        gs_page_install_app (GS_PAGE (self), self->app);
 }
 
-/**
- * gs_shell_details_addon_selected_cb:
- **/
 static void
 gs_shell_details_addon_selected_cb (GsAppAddonRow *row,
                                    GParamSpec *pspec,
@@ -1674,18 +1620,12 @@ gs_shell_details_addon_selected_cb (GsAppAddonRow *row,
        }
 }
 
-/**
- * gs_shell_details_app_launch_button_cb:
- **/
 static void
 gs_shell_details_app_launch_button_cb (GtkWidget *widget, GsShellDetails *self)
 {
        gs_page_launch_app (GS_PAGE (self), self->app);
 }
 
-/**
- * gs_shell_details_app_add_shortcut_button_cb:
- **/
 static void
 gs_shell_details_app_add_shortcut_button_cb (GtkWidget *widget,
                                             GsShellDetails *self)
@@ -1693,9 +1633,6 @@ gs_shell_details_app_add_shortcut_button_cb (GtkWidget *widget,
        gs_page_shortcut_add (GS_PAGE (self), self->app);
 }
 
-/**
- * gs_shell_details_app_remove_shortcut_button_cb:
- **/
 static void
 gs_shell_details_app_remove_shortcut_button_cb (GtkWidget *widget,
                                                GsShellDetails *self)
@@ -1703,9 +1640,6 @@ gs_shell_details_app_remove_shortcut_button_cb (GtkWidget *widget,
        gs_page_shortcut_remove (GS_PAGE (self), self->app);
 }
 
-/**
- * gs_shell_details_review_response_cb:
- **/
 static void
 gs_shell_details_review_response_cb (GtkDialog *dialog,
                                     gint response,
@@ -1750,9 +1684,6 @@ gs_shell_details_review_response_cb (GtkDialog *dialog,
        gtk_widget_destroy (GTK_WIDGET (dialog));
 }
 
-/**
- * gs_shell_details_write_review_cb:
- **/
 static void
 gs_shell_details_write_review_cb (GtkButton *button,
                                  GsShellDetails *self)
@@ -1776,9 +1707,6 @@ gs_shell_details_app_removed (GsPage *page, GsApp *app)
        gs_shell_details_reload (page);
 }
 
-/**
- * gs_shell_details_setup:
- */
 void
 gs_shell_details_setup (GsShellDetails *self,
                        GsShell *shell,
@@ -1837,9 +1765,6 @@ gs_shell_details_setup (GsShellDetails *self,
                       cancellable);
 }
 
-/**
- * gs_shell_details_dispose:
- **/
 static void
 gs_shell_details_dispose (GObject *object)
 {
@@ -1858,9 +1783,6 @@ gs_shell_details_dispose (GObject *object)
        G_OBJECT_CLASS (gs_shell_details_parent_class)->dispose (object);
 }
 
-/**
- * gs_shell_details_class_init:
- **/
 static void
 gs_shell_details_class_init (GsShellDetailsClass *klass)
 {
@@ -1938,9 +1860,6 @@ gs_shell_details_class_init (GsShellDetailsClass *klass)
        gtk_widget_class_bind_template_child (widget_class, GsShellDetails, label_details_kudo_updated);
 }
 
-/**
- * gs_shell_details_init:
- **/
 static void
 gs_shell_details_init (GsShellDetails *self)
 {
@@ -1958,9 +1877,6 @@ gs_shell_details_init (GsShellDetails *self)
                                    self, NULL);
 }
 
-/**
- * gs_shell_details_new:
- **/
 GsShellDetails *
 gs_shell_details_new (void)
 {
diff --git a/src/gs-shell-installed.c b/src/gs-shell-installed.c
index ee0bf33..5a2543a 100644
--- a/src/gs-shell-installed.c
+++ b/src/gs-shell-installed.c
@@ -66,9 +66,6 @@ static void gs_shell_installed_pending_apps_changed_cb (GsPluginLoader *plugin_l
                                                        GsShellInstalled *self);
 static void set_selection_mode (GsShellInstalled *self, gboolean selection_mode);
 
-/**
- * gs_shell_installed_invalidate:
- **/
 void
 gs_shell_installed_invalidate (GsShellInstalled *self)
 {
@@ -118,9 +115,6 @@ gs_shell_installed_app_removed (GsPage *page, GsApp *app)
        }
 }
 
-/**
- * gs_shell_installed_app_remove_cb:
- **/
 static void
 gs_shell_installed_app_remove_cb (GsAppRow *app_row,
                                  GsShellInstalled *self)
@@ -142,9 +136,6 @@ gs_shell_installed_invalidate_sort_idle (gpointer user_data)
        return G_SOURCE_REMOVE;
 }
 
-/**
- * gs_shell_installed_notify_state_changed_cb:
- **/
 static void
 gs_shell_installed_notify_state_changed_cb (GsApp *app,
                                            GParamSpec *pspec,
@@ -180,9 +171,6 @@ gs_shell_installed_add_app (GsShellInstalled *self, GsApp *app)
        gtk_widget_show (app_row);
 }
 
-/**
- * gs_shell_installed_get_installed_cb:
- **/
 static void
 gs_shell_installed_get_installed_cb (GObject *source_object,
                                     GAsyncResult *res,
@@ -217,9 +205,6 @@ out:
        gs_shell_installed_pending_apps_changed_cb (plugin_loader, self);
 }
 
-/**
- * gs_shell_installed_load:
- */
 static void
 gs_shell_installed_load (GsShellInstalled *self)
 {
@@ -268,9 +253,6 @@ gs_shell_update_button_select_visibility (GsShellInstalled *self)
        gtk_widget_set_visible (self->button_select, show_button_select);
 }
 
-/**
- * gs_shell_installed_switch_to:
- **/
 static void
 gs_shell_installed_switch_to (GsPage *page, gboolean scroll_up)
 {
@@ -368,9 +350,6 @@ gs_shell_installed_get_app_sort_key (GsApp *app)
        return g_string_free (key, FALSE);
 }
 
-/**
- * gs_shell_installed_sort_func:
- **/
 static gint
 gs_shell_installed_sort_func (GtkListBoxRow *a,
                              GtkListBoxRow *b,
@@ -395,9 +374,6 @@ gs_shell_installed_sort_func (GtkListBoxRow *a,
        return g_strcmp0 (key1, key2);
 }
 
-/**
- * gs_shell_installed_is_addon_id_kind
- **/
 static gboolean
 gs_shell_installed_is_addon_id_kind (GsApp *app)
 {
@@ -410,9 +386,6 @@ gs_shell_installed_is_addon_id_kind (GsApp *app)
        return TRUE;
 }
 
-/**
- * gs_shell_installed_list_header_func
- **/
 static void
 gs_shell_installed_list_header_func (GtkListBoxRow *row,
                                     GtkListBoxRow *before,
@@ -473,9 +446,6 @@ gs_shell_installed_has_app (GsShellInstalled *self,
        return ret;
 }
 
-/**
- * gs_shell_installed_pending_apps_changed_cb:
- */
 static void
 gs_shell_installed_pending_apps_changed_cb (GsPluginLoader *plugin_loader,
                                            GsShellInstalled *self)
@@ -702,9 +672,6 @@ gs_shell_settings_changed_cb (GsShellInstalled *self,
        }
 }
 
-/**
- * gs_shell_installed_setup:
- */
 void
 gs_shell_installed_setup (GsShellInstalled *self,
                          GsShell *shell,
@@ -767,9 +734,6 @@ gs_shell_installed_setup (GsShellInstalled *self,
                       cancellable);
 }
 
-/**
- * gs_shell_installed_dispose:
- **/
 static void
 gs_shell_installed_dispose (GObject *object)
 {
@@ -786,9 +750,6 @@ gs_shell_installed_dispose (GObject *object)
        G_OBJECT_CLASS (gs_shell_installed_parent_class)->dispose (object);
 }
 
-/**
- * gs_shell_installed_class_init:
- **/
 static void
 gs_shell_installed_class_init (GsShellInstalledClass *klass)
 {
@@ -813,9 +774,6 @@ gs_shell_installed_class_init (GsShellInstalledClass *klass)
        gtk_widget_class_bind_template_child (widget_class, GsShellInstalled, stack_install);
 }
 
-/**
- * gs_shell_installed_init:
- **/
 static void
 gs_shell_installed_init (GsShellInstalled *self)
 {
@@ -830,9 +788,6 @@ gs_shell_installed_init (GsShellInstalled *self)
                                  self);
 }
 
-/**
- * gs_shell_installed_new:
- **/
 GsShellInstalled *
 gs_shell_installed_new (void)
 {
diff --git a/src/gs-shell-loading.c b/src/gs-shell-loading.c
index 2dc0b65..ddee4c7 100644
--- a/src/gs-shell-loading.c
+++ b/src/gs-shell-loading.c
@@ -47,9 +47,6 @@ enum {
 
 static guint signals [SIGNAL_LAST] = { 0 };
 
-/**
- * gs_shell_loading_status_changed_cb:
- **/
 static void
 gs_shell_loading_status_changed_cb (GsPluginLoader *plugin_loader,
                                    GsApp *app,
@@ -79,9 +76,6 @@ gs_shell_loading_status_changed_cb (GsPluginLoader *plugin_loader,
        }
 }
 
-/**
- * gs_shell_loading_refresh_cb:
- **/
 static void
 gs_shell_loading_refresh_cb (GObject *source_object, GAsyncResult *res, gpointer user_data)
 {
@@ -102,9 +96,6 @@ gs_shell_loading_refresh_cb (GObject *source_object, GAsyncResult *res, gpointer
        g_signal_emit (self, signals[SIGNAL_REFRESHED], 0);
 }
 
-/**
- * gs_shell_loading_load:
- */
 static void
 gs_shell_loading_load (GsShellLoading *self)
 {
@@ -122,9 +113,6 @@ gs_shell_loading_load (GsShellLoading *self)
                          self);
 }
 
-/**
- * gs_shell_loading_switch_to:
- **/
 static void
 gs_shell_loading_switch_to (GsPage *page, gboolean scroll_up)
 {
@@ -139,9 +127,6 @@ gs_shell_loading_switch_to (GsPage *page, gboolean scroll_up)
        gs_shell_loading_load (self);
 }
 
-/**
- * gs_shell_loading_setup:
- */
 void
 gs_shell_loading_setup (GsShellLoading *self,
                        GsShell *shell,
@@ -161,9 +146,6 @@ gs_shell_loading_setup (GsShellLoading *self,
        gs_page_setup (GS_PAGE (self), shell, plugin_loader, cancellable);
 }
 
-/**
- * gs_shell_loading_dispose:
- **/
 static void
 gs_shell_loading_dispose (GObject *object)
 {
@@ -176,9 +158,6 @@ gs_shell_loading_dispose (GObject *object)
        G_OBJECT_CLASS (gs_shell_loading_parent_class)->dispose (object);
 }
 
-/**
- * gs_shell_loading_class_init:
- **/
 static void
 gs_shell_loading_class_init (GsShellLoadingClass *klass)
 {
@@ -202,18 +181,12 @@ gs_shell_loading_class_init (GsShellLoadingClass *klass)
        gtk_widget_class_bind_template_child_private (widget_class, GsShellLoading, label);
 }
 
-/**
- * gs_shell_loading_init:
- **/
 static void
 gs_shell_loading_init (GsShellLoading *self)
 {
        gtk_widget_init_template (GTK_WIDGET (self));
 }
 
-/**
- * gs_shell_loading_new:
- **/
 GsShellLoading *
 gs_shell_loading_new (void)
 {
diff --git a/src/gs-shell-moderate.c b/src/gs-shell-moderate.c
index 24038da..e23412d 100644
--- a/src/gs-shell-moderate.c
+++ b/src/gs-shell-moderate.c
@@ -51,9 +51,6 @@ struct _GsShellModerate
 
 G_DEFINE_TYPE (GsShellModerate, gs_shell_moderate, GS_TYPE_PAGE)
 
-/**
- * gs_shell_moderate_app_set_review_cb:
- **/
 static void
 gs_shell_moderate_app_set_review_cb (GObject *source,
                                     GAsyncResult *res,
@@ -135,9 +132,6 @@ gs_shell_moderate_add_app (GsShellModerate *self, GsApp *app)
        gtk_widget_show (app_row);
 }
 
-/**
- * gs_shell_moderate_get_unvoted_reviews_cb:
- **/
 static void
 gs_shell_moderate_get_unvoted_reviews_cb (GObject *source_object,
                                          GAsyncResult *res,
@@ -175,9 +169,6 @@ gs_shell_moderate_get_unvoted_reviews_cb (GObject *source_object,
        }
 }
 
-/**
- * gs_shell_moderate_load:
- */
 static void
 gs_shell_moderate_load (GsShellModerate *self)
 {
@@ -207,9 +198,6 @@ gs_shell_moderate_reload (GsPage *page)
        gs_shell_moderate_load (self);
 }
 
-/**
- * gs_shell_moderate_switch_to:
- **/
 static void
 gs_shell_moderate_switch_to (GsPage *page, gboolean scroll_up)
 {
@@ -225,9 +213,6 @@ gs_shell_moderate_switch_to (GsPage *page, gboolean scroll_up)
        gs_shell_moderate_load (self);
 }
 
-/**
- * gs_shell_moderate_list_header_func
- **/
 static void
 gs_shell_moderate_list_header_func (GtkListBoxRow *row,
                                     GtkListBoxRow *before,
@@ -243,9 +228,6 @@ gs_shell_moderate_list_header_func (GtkListBoxRow *row,
        }
 }
 
-/**
- * gs_shell_moderate_setup:
- */
 void
 gs_shell_moderate_setup (GsShellModerate *self,
                          GsShell *shell,
@@ -268,9 +250,6 @@ gs_shell_moderate_setup (GsShellModerate *self,
        gs_page_setup (GS_PAGE (self), shell, plugin_loader, cancellable);
 }
 
-/**
- * gs_shell_moderate_dispose:
- **/
 static void
 gs_shell_moderate_dispose (GObject *object)
 {
@@ -286,9 +265,6 @@ gs_shell_moderate_dispose (GObject *object)
        G_OBJECT_CLASS (gs_shell_moderate_parent_class)->dispose (object);
 }
 
-/**
- * gs_shell_moderate_class_init:
- **/
 static void
 gs_shell_moderate_class_init (GsShellModerateClass *klass)
 {
@@ -308,9 +284,6 @@ gs_shell_moderate_class_init (GsShellModerateClass *klass)
        gtk_widget_class_bind_template_child (widget_class, GsShellModerate, stack_install);
 }
 
-/**
- * gs_shell_moderate_init:
- **/
 static void
 gs_shell_moderate_init (GsShellModerate *self)
 {
@@ -323,9 +296,6 @@ gs_shell_moderate_init (GsShellModerate *self)
        self->sizegroup_name = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
 }
 
-/**
- * gs_shell_moderate_new:
- **/
 GsShellModerate *
 gs_shell_moderate_new (void)
 {
diff --git a/src/gs-shell-overview.c b/src/gs-shell-overview.c
index e89396d..7ef1209 100644
--- a/src/gs-shell-overview.c
+++ b/src/gs-shell-overview.c
@@ -91,9 +91,6 @@ load_data_free (LoadData *data)
         g_slice_free (LoadData, data);
 }
 
-/**
- * gs_shell_overview_invalidate:
- **/
 void
 gs_shell_overview_invalidate (GsShellOverview *self)
 {
@@ -121,9 +118,6 @@ filter_category (GsApp *app, gpointer user_data)
        return !gs_app_has_category (app, category);
 }
 
-/**
- * gs_shell_overview_get_popular_cb:
- **/
 static void
 gs_shell_overview_get_popular_cb (GObject *source_object,
                                  GAsyncResult *res,
@@ -295,9 +289,6 @@ category_tile_clicked (GsCategoryTile *tile, gpointer data)
        gs_shell_show_category (priv->shell, category);
 }
 
-/**
- * gs_shell_overview_get_categories_cb:
- **/
 static void
 gs_shell_overview_get_categories_cb (GObject *source_object,
                                     GAsyncResult *res,
@@ -390,9 +381,6 @@ out:
        }
 }
 
-/**
- * gs_shell_overview_load:
- */
 static void
 gs_shell_overview_load (GsShellOverview *self)
 {
@@ -493,9 +481,6 @@ gs_shell_overview_reload (GsPage *page)
        gs_shell_overview_load (self);
 }
 
-/**
- * gs_shell_overview_switch_to:
- **/
 static void
 gs_shell_overview_switch_to (GsPage *page, gboolean scroll_up)
 {
@@ -629,9 +614,6 @@ gs_shell_overview_refreshed (GsShellOverview *self)
        }
 }
 
-/**
- * gs_shell_overview_class_init:
- **/
 static void
 gs_shell_overview_class_init (GsShellOverviewClass *klass)
 {
@@ -669,9 +651,6 @@ gs_shell_overview_class_init (GsShellOverviewClass *klass)
        gtk_widget_class_bind_template_child_private (widget_class, GsShellOverview, categories_more);
 }
 
-/**
- * gs_shell_overview_new:
- **/
 GsShellOverview *
 gs_shell_overview_new (void)
 {
diff --git a/src/gs-shell-search-provider.c b/src/gs-shell-search-provider.c
index 9f04400..497942c 100644
--- a/src/gs-shell-search-provider.c
+++ b/src/gs-shell-search-provider.c
@@ -57,9 +57,6 @@ pending_search_free (PendingSearch *search)
        g_slice_free (PendingSearch, search);
 }
 
-/**
- * search_sort_by_kudo_cb:
- **/
 static gint
 search_sort_by_kudo_cb (GsApp *app1, GsApp *app2, gpointer user_data)
 {
diff --git a/src/gs-shell-search.c b/src/gs-shell-search.c
index 2a88a17..21b2e67 100644
--- a/src/gs-shell-search.c
+++ b/src/gs-shell-search.c
@@ -64,9 +64,6 @@ gs_shell_search_app_row_activated_cb (GtkListBox *list_box,
        gs_shell_show_app (self->shell, app);
 }
 
-/**
- * gs_shell_search_app_row_clicked_cb:
- **/
 static void
 gs_shell_search_app_row_clicked_cb (GsAppRow *app_row,
                                    GsShellSearch *self)
@@ -94,9 +91,6 @@ gs_shell_search_waiting_cancel (GsShellSearch *self)
        self->waiting_id = 0;
 }
 
-/**
- * gs_shell_search_get_search_cb:
- **/
 static void
 gs_shell_search_get_search_cb (GObject *source_object,
                               GAsyncResult *res,
@@ -170,9 +164,6 @@ gs_shell_search_waiting_show_cb (gpointer user_data)
        return FALSE;
 }
 
-/**
- * gs_shell_search_load:
- */
 static void
 gs_shell_search_load (GsShellSearch *self)
 {
@@ -237,9 +228,6 @@ gs_shell_search_set_text (GsShellSearch *self, const gchar *value)
        self->value = g_strdup (value);
 }
 
-/**
- * gs_shell_search_switch_to:
- **/
 static void
 gs_shell_search_switch_to (GsPage *page, gboolean scroll_up)
 {
@@ -329,9 +317,6 @@ gs_shell_search_get_app_sort_key (GsApp *app)
        return g_string_free (key, FALSE);
 }
 
-/**
- * gs_shell_search_sort_func:
- **/
 static gint
 gs_shell_search_sort_func (GtkListBoxRow *a,
                           GtkListBoxRow *b,
@@ -346,9 +331,6 @@ gs_shell_search_sort_func (GtkListBoxRow *a,
        return g_strcmp0 (key2, key1);
 }
 
-/**
- * gs_shell_search_list_header_func
- **/
 static void
 gs_shell_search_list_header_func (GtkListBoxRow *row,
                                     GtkListBoxRow *before,
@@ -372,9 +354,6 @@ gs_shell_search_list_header_func (GtkListBoxRow *row,
        gtk_list_box_row_set_header (row, header);
 }
 
-/**
- * gs_shell_search_cancel_cb:
- */
 static void
 gs_shell_search_cancel_cb (GCancellable *cancellable,
                           GsShellSearch *self)
@@ -403,9 +382,6 @@ gs_shell_search_search_button_cb (GtkButton *button, GsShellSearch *self)
        gs_shell_change_mode (self->shell, GS_SHELL_MODE_OVERVIEW, NULL, TRUE);
 }
 
-/**
- * gs_shell_search_setup:
- */
 void
 gs_shell_search_setup (GsShellSearch *self,
                       GsShell *shell,
@@ -448,9 +424,6 @@ gs_shell_search_setup (GsShellSearch *self,
                       cancellable);
 }
 
-/**
- * gs_shell_search_dispose:
- **/
 static void
 gs_shell_search_dispose (GObject *object)
 {
@@ -467,9 +440,6 @@ gs_shell_search_dispose (GObject *object)
        G_OBJECT_CLASS (gs_shell_search_parent_class)->dispose (object);
 }
 
-/**
- * gs_shell_search_finalize:
- **/
 static void
 gs_shell_search_finalize (GObject *object)
 {
@@ -481,9 +451,6 @@ gs_shell_search_finalize (GObject *object)
        G_OBJECT_CLASS (gs_shell_search_parent_class)->finalize (object);
 }
 
-/**
- * gs_shell_search_class_init:
- **/
 static void
 gs_shell_search_class_init (GsShellSearchClass *klass)
 {
@@ -506,9 +473,6 @@ gs_shell_search_class_init (GsShellSearchClass *klass)
        gtk_widget_class_bind_template_child (widget_class, GsShellSearch, stack_search);
 }
 
-/**
- * gs_shell_search_init:
- **/
 static void
 gs_shell_search_init (GsShellSearch *self)
 {
@@ -518,9 +482,6 @@ gs_shell_search_init (GsShellSearch *self)
        self->sizegroup_name = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
 }
 
-/**
- * gs_shell_search_new:
- **/
 GsShellSearch *
 gs_shell_search_new (void)
 {
diff --git a/src/gs-shell-updates.c b/src/gs-shell-updates.c
index 433c054..c8a1b7a 100644
--- a/src/gs-shell-updates.c
+++ b/src/gs-shell-updates.c
@@ -107,27 +107,18 @@ enum {
 
 G_DEFINE_TYPE (GsShellUpdates, gs_shell_updates, GS_TYPE_PAGE)
 
-/**
- * gs_shell_updates_set_flag:
- **/
 static void
 gs_shell_updates_set_flag (GsShellUpdates *self, GsShellUpdatesFlags flag)
 {
        self->result_flags |= flag;
 }
 
-/**
- * gs_shell_updates_clear_flag:
- **/
 static void
 gs_shell_updates_clear_flag (GsShellUpdates *self, GsShellUpdatesFlags flag)
 {
        self->result_flags &= ~flag;
 }
 
-/**
- * gs_shell_updates_state_to_string:
- **/
 static const gchar *
 gs_shell_updates_state_to_string (GsShellUpdatesState state)
 {
@@ -146,9 +137,6 @@ gs_shell_updates_state_to_string (GsShellUpdatesState state)
        return NULL;
 }
 
-/**
- * gs_shell_updates_invalidate:
- **/
 static void
 gs_shell_updates_invalidate (GsShellUpdates *self)
 {
@@ -238,9 +226,6 @@ gs_shell_updates_last_checked_time_string (GsShellUpdates *self)
        return time_string;
 }
 
-/**
- * gs_shell_updates_get_state_string:
- **/
 static const gchar *
 gs_shell_updates_get_state_string (GsPluginStatus status)
 {
@@ -253,9 +238,6 @@ gs_shell_updates_get_state_string (GsPluginStatus status)
        return _("Looking for new updates…");
 }
 
-/**
- * gs_shell_updates_update_ui_state:
- **/
 static void
 gs_shell_updates_update_ui_state (GsShellUpdates *self)
 {
@@ -439,9 +421,6 @@ gs_shell_updates_update_ui_state (GsShellUpdates *self)
        }
 }
 
-/**
- * gs_shell_updates_set_state:
- **/
 static void
 gs_shell_updates_set_state (GsShellUpdates *self, GsShellUpdatesState state)
 {
@@ -454,9 +433,6 @@ gs_shell_updates_set_state (GsShellUpdates *self, GsShellUpdatesState state)
        gs_shell_updates_update_ui_state (self);
 }
 
-/**
- * gs_shell_updates_notify_network_state_cb:
- **/
 static void
 gs_shell_updates_notify_network_state_cb (GNetworkMonitor *network_monitor,
                                          gboolean available,
@@ -465,9 +441,6 @@ gs_shell_updates_notify_network_state_cb (GNetworkMonitor *network_monitor,
        gs_shell_updates_update_ui_state (self);
 }
 
-/**
- * gs_shell_updates_get_updates_cb:
- **/
 static void
 gs_shell_updates_get_updates_cb (GsPluginLoader *plugin_loader,
                                 GAsyncResult *res,
@@ -584,9 +557,6 @@ gs_shell_updates_get_upgrades_cb (GObject *source_object,
                gs_shell_updates_set_state (self, GS_SHELL_UPDATES_STATE_IDLE);
 }
 
-/**
- * gs_shell_updates_load:
- */
 static void
 gs_shell_updates_load (GsShellUpdates *self)
 {
@@ -619,9 +589,6 @@ gs_shell_updates_load (GsShellUpdates *self)
        }
 }
 
-/**
- * gs_shell_updates_reload:
- */
 static void
 gs_shell_updates_reload (GsPage *page)
 {
@@ -630,9 +597,6 @@ gs_shell_updates_reload (GsPage *page)
        gs_shell_updates_load (self);
 }
 
-/**
- * gs_shell_updates_switch_to:
- **/
 static void
 gs_shell_updates_switch_to (GsPage *page,
                            gboolean scroll_up)
@@ -684,9 +648,6 @@ show_update_details (GsApp *app, GsShellUpdates *self)
                                  G_CALLBACK (gtk_widget_destroy), dialog);
 }
 
-/**
- * gs_shell_updates_activated_cb:
- **/
 static void
 gs_shell_updates_activated_cb (GtkListBox *list_box,
                               GtkListBoxRow *row,
@@ -699,9 +660,6 @@ gs_shell_updates_activated_cb (GtkListBox *list_box,
        show_update_details (app, self);
 }
 
-/**
- * gs_shell_updates_button_clicked_cb:
- **/
 static void
 gs_shell_updates_button_clicked_cb (GsUpdateList *update_list,
                                    GsApp *app,
@@ -711,9 +669,6 @@ gs_shell_updates_button_clicked_cb (GsUpdateList *update_list,
                gs_page_update_app (GS_PAGE (self), app);
 }
 
-/**
- * gs_shell_updates_refresh_cb:
- **/
 static void
 gs_shell_updates_refresh_cb (GsPluginLoader *plugin_loader,
                             GAsyncResult *res,
@@ -751,9 +706,6 @@ gs_shell_updates_refresh_cb (GsPluginLoader *plugin_loader,
        gs_page_switch_to (GS_PAGE (self), TRUE);
 }
 
-/**
- * gs_shell_updates_get_new_updates:
- **/
 static void
 gs_shell_updates_get_new_updates (GsShellUpdates *self)
 {
@@ -776,9 +728,6 @@ gs_shell_updates_get_new_updates (GsShellUpdates *self)
                                        self);
 }
 
-/**
- * gs_shell_updates_show_network_settings:
- **/
 static void
 gs_shell_updates_show_network_settings (GsShellUpdates *self)
 {
@@ -787,9 +736,6 @@ gs_shell_updates_show_network_settings (GsShellUpdates *self)
                g_warning ("Failed to open the control center: %s", error->message);
 }
 
-/**
- * gs_shell_updates_refresh_confirm_cb:
- **/
 static void
 gs_shell_updates_refresh_confirm_cb (GtkDialog *dialog,
                                     GtkResponseType response_type,
@@ -816,9 +762,6 @@ gs_shell_updates_refresh_confirm_cb (GtkDialog *dialog,
        gtk_widget_destroy (GTK_WIDGET (dialog));
 }
 
-/**
- * gs_shell_updates_button_network_settings_cb:
- **/
 static void
 gs_shell_updates_button_network_settings_cb (GtkWidget *widget,
                                             GsShellUpdates *self)
@@ -826,9 +769,6 @@ gs_shell_updates_button_network_settings_cb (GtkWidget *widget,
        gs_shell_updates_show_network_settings (self);
 }
 
-/**
- * gs_shell_updates_button_mobile_refresh_cb:
- **/
 static void
 gs_shell_updates_button_mobile_refresh_cb (GtkWidget *widget,
                                           GsShellUpdates *self)
@@ -837,9 +777,6 @@ gs_shell_updates_button_mobile_refresh_cb (GtkWidget *widget,
        gs_shell_updates_get_new_updates (self);
 }
 
-/**
- * gs_shell_updates_button_refresh_cb:
- **/
 static void
 gs_shell_updates_button_refresh_cb (GtkWidget *widget,
                                    GsShellUpdates *self)
@@ -918,9 +855,6 @@ gs_shell_updates_button_refresh_cb (GtkWidget *widget,
        }
 }
 
-/**
- * gs_shell_updates_pending_apps_changed_cb:
- */
 static void
 gs_shell_updates_pending_apps_changed_cb (GsPluginLoader *plugin_loader,
                                          GsShellUpdates *self)
@@ -928,9 +862,6 @@ gs_shell_updates_pending_apps_changed_cb (GsPluginLoader *plugin_loader,
        gs_shell_updates_invalidate (self);
 }
 
-/**
- * cancel_trigger_failed_cb:
- **/
 static void
 cancel_trigger_failed_cb (GObject *source, GAsyncResult *res, gpointer user_data)
 {
@@ -942,9 +873,6 @@ cancel_trigger_failed_cb (GObject *source, GAsyncResult *res, gpointer user_data
        }
 }
 
-/**
- * gs_shell_updates_reboot_failed_cb:
- **/
 static void
 gs_shell_updates_reboot_failed_cb (GObject *source, GAsyncResult *res, gpointer user_data)
 {
@@ -973,9 +901,6 @@ gs_shell_updates_reboot_failed_cb (GObject *source, GAsyncResult *res, gpointer
                                           self);
 }
 
-/**
- * gs_shell_updates_perform_update_cb:
- **/
 static void
 gs_shell_updates_perform_update_cb (GsPluginLoader *plugin_loader,
                                     GAsyncResult *res,
@@ -1243,9 +1168,6 @@ gs_shell_updates_changed_cb (GsPluginLoader *plugin_loader,
        gs_shell_updates_reload (GS_PAGE (self));
 }
 
-/**
- * gs_shell_updates_status_changed_cb:
- **/
 static void
 gs_shell_updates_status_changed_cb (GsPluginLoader *plugin_loader,
                                    GsApp *app,
@@ -1397,9 +1319,6 @@ gs_shell_updates_setup (GsShellUpdates *self,
                       cancellable);
 }
 
-/**
- * gs_shell_updates_dispose:
- **/
 static void
 gs_shell_updates_dispose (GObject *object)
 {
@@ -1423,9 +1342,6 @@ gs_shell_updates_dispose (GObject *object)
        G_OBJECT_CLASS (gs_shell_updates_parent_class)->dispose (object);
 }
 
-/**
- * gs_shell_updates_class_init:
- **/
 static void
 gs_shell_updates_class_init (GsShellUpdatesClass *klass)
 {
@@ -1453,9 +1369,6 @@ gs_shell_updates_class_init (GsShellUpdatesClass *klass)
        gtk_widget_class_bind_template_child (widget_class, GsShellUpdates, upgrade_banner);
 }
 
-/**
- * gs_shell_updates_init:
- **/
 static void
 gs_shell_updates_init (GsShellUpdates *self)
 {
@@ -1473,9 +1386,6 @@ gs_shell_updates_init (GsShellUpdates *self)
                self->ampm_available = TRUE;
 }
 
-/**
- * gs_shell_updates_new:
- **/
 GsShellUpdates *
 gs_shell_updates_new (void)
 {
diff --git a/src/gs-shell.c b/src/gs-shell.c
index 4a5aeb0..0f526a9 100644
--- a/src/gs-shell.c
+++ b/src/gs-shell.c
@@ -102,9 +102,6 @@ modal_dialog_unmapped_cb (GtkWidget *dialog,
        g_ptr_array_remove (priv->modal_dialogs, dialog);
 }
 
-/**
- * gs_shell_modal_dialog_present:
- **/
 void
 gs_shell_modal_dialog_present (GsShell *shell, GtkDialog *dialog)
 {
@@ -132,9 +129,6 @@ gs_shell_modal_dialog_present (GsShell *shell, GtkDialog *dialog)
        gtk_window_present (GTK_WINDOW (dialog));
 }
 
-/**
- * gs_shell_is_active:
- **/
 gboolean
 gs_shell_is_active (GsShell *shell)
 {
@@ -142,9 +136,6 @@ gs_shell_is_active (GsShell *shell)
        return gtk_window_is_active (priv->main_window);
 }
 
-/**
- * gs_shell_get_window:
- **/
 GtkWindow *
 gs_shell_get_window (GsShell *shell)
 {
@@ -152,9 +143,6 @@ gs_shell_get_window (GsShell *shell)
        return priv->main_window;
 }
 
-/**
- * gs_shell_activate:
- **/
 void
 gs_shell_activate (GsShell *shell)
 {
@@ -331,9 +319,6 @@ gs_shell_change_mode (GsShell *shell,
                g_ptr_array_set_size (priv->modal_dialogs, 0);
 }
 
-/**
- * gs_shell_overview_button_cb:
- **/
 static void
 gs_shell_overview_button_cb (GtkWidget *widget, GsShell *shell)
 {
@@ -397,9 +382,6 @@ free_back_entry (BackEntry *entry)
        g_free (entry);
 }
 
-/**
- * gs_shell_back_button_cb:
- **/
 static void
 gs_shell_back_button_cb (GtkWidget *widget, GsShell *shell)
 {
@@ -566,9 +548,6 @@ gs_shell_reload_cb (GsPluginLoader *plugin_loader, GsShell *shell)
        gs_page_reload (GS_PAGE (priv->shell_updates));
 }
 
-/**
- * gs_shell_main_window_mapped_cb:
- */
 static void
 gs_shell_main_window_mapped_cb (GtkWidget *widget, GsShell *shell)
 {
@@ -601,9 +580,6 @@ gs_shell_monitor_permission (GsShell *shell)
                                  G_CALLBACK (on_permission_changed), shell);
 }
 
-/**
- * gs_shell_setup:
- */
 void
 gs_shell_setup (GsShell *shell, GsPluginLoader *plugin_loader, GCancellable *cancellable)
 {
@@ -740,9 +716,6 @@ gs_shell_setup (GsShell *shell, GsPluginLoader *plugin_loader, GCancellable *can
                          G_CALLBACK (initial_overview_load_done), shell);
 }
 
-/**
- * gs_shell_set_mode:
- **/
 void
 gs_shell_set_mode (GsShell *shell, GsShellMode mode)
 {
@@ -858,9 +831,6 @@ gs_shell_show_search_result (GsShell *shell, const gchar *id, const gchar *searc
                              (gpointer) search, TRUE);
 }
 
-/**
- * gs_shell_dispose:
- **/
 static void
 gs_shell_dispose (GObject *object)
 {
@@ -881,9 +851,6 @@ gs_shell_dispose (GObject *object)
        G_OBJECT_CLASS (gs_shell_parent_class)->dispose (object);
 }
 
-/**
- * gs_shell_class_init:
- **/
 static void
 gs_shell_class_init (GsShellClass *klass)
 {
@@ -898,9 +865,6 @@ gs_shell_class_init (GsShellClass *klass)
                              G_TYPE_NONE, 0);
 }
 
-/**
- * gs_shell_init:
- **/
 static void
 gs_shell_init (GsShell *shell)
 {
@@ -911,9 +875,6 @@ gs_shell_init (GsShell *shell)
        priv->modal_dialogs = g_ptr_array_new_with_free_func ((GDestroyNotify) gtk_widget_destroy);
 }
 
-/**
- * gs_shell_new:
- **/
 GsShell *
 gs_shell_new (void)
 {
diff --git a/src/gs-star-widget.c b/src/gs-star-widget.c
index f987b3c..a28fbd6 100644
--- a/src/gs-star-widget.c
+++ b/src/gs-star-widget.c
@@ -53,9 +53,6 @@ static guint signals [SIGNAL_LAST] = { 0 };
 
 static const gint rate_to_star[] = {20, 40, 60, 80, 100, -1};
 
-/**
- * gs_star_widget_get_rating:
- **/
 gint
 gs_star_widget_get_rating (GsStarWidget *star)
 {
@@ -65,9 +62,6 @@ gs_star_widget_get_rating (GsStarWidget *star)
        return priv->rating;
 }
 
-/**
- * gs_star_widget_set_icon_size:
- **/
 void
 gs_star_widget_set_icon_size (GsStarWidget *star, guint pixel_size)
 {
@@ -95,9 +89,6 @@ gs_star_widget_style_class_enable (GtkWidget *widget, gboolean val)
        }
 }
 
-/**
- * gs_star_widget_refresh:
- **/
 static void
 gs_star_widget_refresh (GsStarWidget *star)
 {
@@ -117,9 +108,6 @@ gs_star_widget_refresh (GsStarWidget *star)
        gs_star_widget_style_class_enable (priv->image5, priv->rating > 80);
 }
 
-/**
- * gs_star_widget_set_interactive:
- **/
 void
 gs_star_widget_set_interactive (GsStarWidget *star, gboolean interactive)
 {
@@ -130,9 +118,6 @@ gs_star_widget_set_interactive (GsStarWidget *star, gboolean interactive)
        gs_star_widget_refresh (star);
 }
 
-/**
- * gs_star_widget_set_rating:
- **/
 void
 gs_star_widget_set_rating (GsStarWidget *star,
                           gint rating)
@@ -144,18 +129,12 @@ gs_star_widget_set_rating (GsStarWidget *star,
        gs_star_widget_refresh (star);
 }
 
-/**
- * gs_star_widget_destroy:
- **/
 static void
 gs_star_widget_destroy (GtkWidget *widget)
 {
        GTK_WIDGET_CLASS (gs_star_widget_parent_class)->destroy (widget);
 }
 
-/**
- * gs_star_widget_button_clicked_cb:
- **/
 static void
 gs_star_widget_button_clicked_cb (GtkButton *button, GsStarWidget *star)
 {
@@ -173,9 +152,6 @@ gs_star_widget_button_clicked_cb (GtkButton *button, GsStarWidget *star)
        gs_star_widget_refresh (star);
 }
 
-/**
- * gs_star_widget_init:
- **/
 static void
 gs_star_widget_init (GsStarWidget *star)
 {
@@ -213,9 +189,6 @@ gs_star_widget_init (GsStarWidget *star)
                           GINT_TO_POINTER (rate_to_star[4]));
 }
 
-/**
- * gs_star_widget_class_init:
- **/
 static void
 gs_star_widget_class_init (GsStarWidgetClass *klass)
 {
@@ -245,9 +218,6 @@ gs_star_widget_class_init (GsStarWidgetClass *klass)
        gtk_widget_class_bind_template_child_private (widget_class, GsStarWidget, image5);
 }
 
-/**
- * gs_star_widget_new:
- **/
 GtkWidget *
 gs_star_widget_new (void)
 {
diff --git a/src/gs-update-list.c b/src/gs-update-list.c
index fc30330..887a21c 100644
--- a/src/gs-update-list.c
+++ b/src/gs-update-list.c
@@ -47,9 +47,6 @@ G_DEFINE_TYPE_WITH_PRIVATE (GsUpdateList, gs_update_list, GTK_TYPE_LIST_BOX)
 
 #define GET_PRIV(o)    gs_update_list_get_instance_private(o)
 
-/**
- * gs_update_list_button_clicked_cb:
- **/
 static void
 gs_update_list_button_clicked_cb (GsAppRow *app_row,
                                  GsUpdateList *update_list)
diff --git a/src/gs-vendor.c b/src/gs-vendor.c
index f646cb3..98a18f9 100644
--- a/src/gs-vendor.c
+++ b/src/gs-vendor.c
@@ -35,9 +35,6 @@ struct _GsVendor
 G_DEFINE_TYPE (GsVendor, gs_vendor, G_TYPE_OBJECT)
 
 #ifdef HAVE_PACKAGEKIT
-/**
- * gs_vendor_type_to_string:
- **/
 static const gchar *
 gs_vendor_type_to_string (GsVendorUrlType type)
 {
@@ -53,9 +50,6 @@ gs_vendor_type_to_string (GsVendorUrlType type)
 }
 #endif
 
-/**
- * gs_vendor_get_not_found_url:
- **/
 gchar *
 gs_vendor_get_not_found_url (GsVendor *vendor, GsVendorUrlType type)
 {
@@ -99,10 +93,6 @@ out:
 #endif
 }
 
-/**
- * gs_vendor_init:
- * @vendor: This class instance
- **/
 static void
 gs_vendor_init (GsVendor *vendor)
 {
@@ -117,10 +107,6 @@ gs_vendor_init (GsVendor *vendor)
 #endif
 }
 
-/**
- * gs_vendor_finalize:
- * @object: The object to finalize
- **/
 static void
 gs_vendor_finalize (GObject *object)
 {
@@ -132,10 +118,6 @@ gs_vendor_finalize (GObject *object)
        G_OBJECT_CLASS (gs_vendor_parent_class)->finalize (object);
 }
 
-/**
- * gs_vendor_class_init:
- * @klass: The GsVendorClass
- **/
 static void
 gs_vendor_class_init (GsVendorClass *klass)
 {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]