summaryrefslogtreecommitdiff
path: root/xattr-tags
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-27 17:38:15 +0200
committerraveit65 <[email protected]>2021-12-11 15:50:08 +0100
commitaa40c23a25687eb1914c7c36a7269f62de1c4040 (patch)
tree8e4b6b8311e99534ebc05b9e85ec7ceda9ba61be /xattr-tags
parent5531df05481859b8efd9c952795759ef2c0dcad9 (diff)
downloadcaja-extensions-aa40c23a25687eb1914c7c36a7269f62de1c4040.tar.bz2
caja-extensions-aa40c23a25687eb1914c7c36a7269f62de1c4040.tar.xz
Use a blank line at most
Diffstat (limited to 'xattr-tags')
-rw-r--r--xattr-tags/caja-xattr-tags-extension.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/xattr-tags/caja-xattr-tags-extension.c b/xattr-tags/caja-xattr-tags-extension.c
index 5638df5..bd2c35e 100644
--- a/xattr-tags/caja-xattr-tags-extension.c
+++ b/xattr-tags/caja-xattr-tags-extension.c
@@ -154,7 +154,6 @@ caja_xattr_tags_update_file_info(CajaInfoProvider *provider,
return CAJA_OPERATION_COMPLETE;
}
-
static void
caja_xattr_tags_cancel_update(CajaInfoProvider *provider,
CajaOperationHandle *handle)
@@ -172,7 +171,6 @@ caja_xattr_tags_info_provider_iface_init(CajaInfoProviderIface *iface)
iface->cancel_update = caja_xattr_tags_cancel_update;
}
-
static GList *
caja_xattr_tags_get_columns(CajaColumnProvider *provider)
{
@@ -194,30 +192,25 @@ caja_xattr_tags_column_provider_iface_init(CajaColumnProviderIface *iface)
iface->get_columns = caja_xattr_tags_get_columns;
}
-
static void
caja_xattr_tags_instance_init(CajaXattrTags *cajaXattrTags)
{
}
-
static void
caja_xattr_tags_class_init(CajaXattrTagsClass *class)
{
parent_class = g_type_class_peek_parent (class);
}
-
static GType caja_xattr_tags_type = 0;
-
GType
caja_xattr_tags_get_type(void)
{
return caja_xattr_tags_type;
}
-
void
caja_xattr_tags_register_type(GTypeModule *module)
{
@@ -233,7 +226,6 @@ caja_xattr_tags_register_type(GTypeModule *module)
(GInstanceInitFunc) caja_xattr_tags_instance_init,
};
-
caja_xattr_tags_type = g_type_module_register_type (module,
G_TYPE_OBJECT,
"CajaXattrTags",
@@ -256,7 +248,6 @@ caja_xattr_tags_register_type(GTypeModule *module)
NULL
};
-
g_type_module_add_interface (module,
CAJA_TYPE_XATTR_TAGS,
CAJA_TYPE_COLUMN_PROVIDER,