diff options
author | rbuj <[email protected]> | 2021-10-27 17:40:17 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-12-11 15:59:33 +0100 |
commit | 6c55334ad9b03006686e2db6c6f6167677a2f510 (patch) | |
tree | b558cc0ad6d97c36b449dbcb2afecb3b9002a565 /src/fr-command-lrzip.c | |
parent | 85909393571d91b3c267afe5341e54bfae5a6d50 (diff) | |
download | engrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.bz2 engrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.xz |
Use a blank line at most
Diffstat (limited to 'src/fr-command-lrzip.c')
-rw-r--r-- | src/fr-command-lrzip.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/fr-command-lrzip.c b/src/fr-command-lrzip.c index cf07d33..a535b1e 100644 --- a/src/fr-command-lrzip.c +++ b/src/fr-command-lrzip.c @@ -28,10 +28,8 @@ static void fr_command_lrzip_finalize (GObject *object); static FrCommandClass *parent_class = NULL; - /* -- list -- */ - static void list__process_line (char *line, gpointer data) @@ -82,7 +80,6 @@ list__process_line (char *line, fr_command_add_file (comm, fdata); } - static void fr_command_lrzip_list (FrCommand *comm) { @@ -95,7 +92,6 @@ fr_command_lrzip_list (FrCommand *comm) fr_process_start (comm->process); } - static void fr_command_lrzip_add (FrCommand *comm, const char *from_file, @@ -152,7 +148,6 @@ fr_command_lrzip_extract (FrCommand *comm, fr_process_end_command (comm->process); } - /* static void fr_command_lrzip_test (FrCommand *comm) @@ -164,17 +159,14 @@ fr_command_lrzip_test (FrCommand *comm) } */ - const char *lrzip_mime_type[] = { "application/x-lrzip", NULL }; - static const char ** fr_command_lrzip_get_mime_types (FrCommand *comm) { return lrzip_mime_type; } - static FrCommandCap fr_command_lrzip_get_capabilities (FrCommand *comm, const char *mime_type, @@ -188,7 +180,6 @@ fr_command_lrzip_get_capabilities (FrCommand *comm, return capabilities; } - static const char * fr_command_lrzip_get_packages (FrCommand *comm, const char *mime_type) @@ -196,7 +187,6 @@ fr_command_lrzip_get_packages (FrCommand *comm, return PACKAGES ("lrzip"); } - static void fr_command_lrzip_class_init (FrCommandLrzipClass *class) { @@ -216,7 +206,6 @@ fr_command_lrzip_class_init (FrCommandLrzipClass *class) afc->get_packages = fr_command_lrzip_get_packages; } - static void fr_command_lrzip_init (FrCommand *comm) { @@ -230,7 +219,6 @@ fr_command_lrzip_init (FrCommand *comm) comm->propTest = FALSE; } - static void fr_command_lrzip_finalize (GObject *object) { @@ -242,7 +230,6 @@ fr_command_lrzip_finalize (GObject *object) G_OBJECT_CLASS (parent_class)->finalize (object); } - GType fr_command_lrzip_get_type () { |