diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2015-05-25 20:33:13 -0700 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2015-05-25 20:41:19 -0700 |
commit | ff5a48d13343eccc5d8fb2772aa8b83afdeb0f3a (patch) | |
tree | 7faae561dbd14a323d88f7b9620b9e877df4b535 /libnautilus-extension/nautilus-property-page-provider.h | |
parent | 545a7660fa7758f506e9aef198fe6786a84b982a (diff) | |
download | nautilus-ff5a48d13343eccc5d8fb2772aa8b83afdeb0f3a.tar.gz |
libnautilus-extension: add gtk-doc documentation coverage
A lot of the library was poorly documented. Make sure the output of the
documentation looks okay.
Diffstat (limited to 'libnautilus-extension/nautilus-property-page-provider.h')
-rw-r--r-- | libnautilus-extension/nautilus-property-page-provider.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/libnautilus-extension/nautilus-property-page-provider.h b/libnautilus-extension/nautilus-property-page-provider.h index 9bf932d10..1a3b36058 100644 --- a/libnautilus-extension/nautilus-property-page-provider.h +++ b/libnautilus-extension/nautilus-property-page-provider.h @@ -45,11 +45,19 @@ G_BEGIN_DECLS typedef struct _NautilusPropertyPageProvider NautilusPropertyPageProvider; typedef struct _NautilusPropertyPageProviderIface NautilusPropertyPageProviderIface; +/** + * NautilusPropertyPageProviderIface: + * @g_iface: The parent interface. + * @get_pages: Returns a #GList of #NautilusPropertyPage. + * See nautilus_property_page_provider_get_pages() for details. + * + * Interface for extensions to provide additional property pages. + */ struct _NautilusPropertyPageProviderIface { GTypeInterface g_iface; - GList *(*get_pages) (NautilusPropertyPageProvider *provider, - GList *files); + GList *(*get_pages) (NautilusPropertyPageProvider *provider, + GList *files); }; /* Interface Functions */ |