diff options
Diffstat (limited to 'libcaja-extension/caja-property-page-provider.c')
-rw-r--r-- | libcaja-extension/caja-property-page-provider.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/libcaja-extension/caja-property-page-provider.c b/libcaja-extension/caja-property-page-provider.c index cd3fc176..8556eeea 100644 --- a/libcaja-extension/caja-property-page-provider.c +++ b/libcaja-extension/caja-property-page-provider.c @@ -28,6 +28,16 @@ #include <glib-object.h> +/** + * SECTION:caja-property-page-provider + * @title: CajaPropertyPageProvider + * @short_description: Interface to provide additional property pages + * @include: libcaja-extension/caja-property-page-provider.h + * + * #CajaPropertyPageProvider allows extension to provide additional pages + * for the file properties dialog. + */ + static void caja_property_page_provider_base_init (gpointer g_class) { @@ -38,10 +48,8 @@ caja_property_page_provider_get_type (void) { static GType type = 0; - if (!type) - { - const GTypeInfo info = - { + if (!type) { + const GTypeInfo info = { sizeof (CajaPropertyPageProviderIface), caja_property_page_provider_base_init, NULL, |