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-ar.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-ar.c')
-rw-r--r-- | src/fr-command-ar.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/fr-command-ar.c b/src/fr-command-ar.c index 6aab37e..83b29a9 100644 --- a/src/fr-command-ar.c +++ b/src/fr-command-ar.c @@ -119,7 +119,6 @@ process_line (char *line, fr_command_add_file (comm, fdata); } - static void fr_command_ar_list (FrCommand *comm) { @@ -132,7 +131,6 @@ fr_command_ar_list (FrCommand *comm) fr_process_start (comm->process); } - static void fr_command_ar_add (FrCommand *comm, const char *from_file, @@ -161,7 +159,6 @@ fr_command_ar_add (FrCommand *comm, fr_process_end_command (comm->process); } - static void fr_command_ar_delete (FrCommand *comm, const char *from_file, @@ -177,7 +174,6 @@ fr_command_ar_delete (FrCommand *comm, fr_process_end_command (comm->process); } - static void fr_command_ar_extract (FrCommand *comm, const char *from_file, @@ -201,7 +197,6 @@ fr_command_ar_extract (FrCommand *comm, fr_process_end_command (comm->process); } - static void fr_command_ar_handle_error (FrCommand *comm, FrProcError *error) @@ -209,19 +204,16 @@ fr_command_ar_handle_error (FrCommand *comm, /* FIXME */ } - const char *ar_mime_type[] = { "application/x-archive", "application/vnd.debian.binary-package", NULL }; - static const char ** fr_command_ar_get_mime_types (FrCommand *comm) { return ar_mime_type; } - static FrCommandCap fr_command_ar_get_capabilities (FrCommand *comm, const char *mime_type, @@ -240,7 +232,6 @@ fr_command_ar_get_capabilities (FrCommand *comm, return capabilities; } - static const char * fr_command_ar_get_packages (FrCommand *comm, const char *mime_type) @@ -248,7 +239,6 @@ fr_command_ar_get_packages (FrCommand *comm, return PACKAGES ("binutils"); } - static void fr_command_ar_class_init (FrCommandArClass *class) { @@ -270,7 +260,6 @@ fr_command_ar_class_init (FrCommandArClass *class) afc->get_packages = fr_command_ar_get_packages; } - static void fr_command_ar_init (FrCommand *comm) { @@ -284,7 +273,6 @@ fr_command_ar_init (FrCommand *comm) comm->propTest = FALSE; } - static void fr_command_ar_finalize (GObject *object) { @@ -296,7 +284,6 @@ fr_command_ar_finalize (GObject *object) G_OBJECT_CLASS (parent_class)->finalize (object); } - GType fr_command_ar_get_type () { |