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-dpkg.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-dpkg.c')
-rw-r--r-- | src/fr-command-dpkg.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/fr-command-dpkg.c b/src/fr-command-dpkg.c index 29472e1..c159b5f 100644 --- a/src/fr-command-dpkg.c +++ b/src/fr-command-dpkg.c @@ -160,7 +160,6 @@ process_data_line (char *line, fr_command_add_file (comm, fdata); } - static void fr_command_dpkg_list (FrCommand *comm) { @@ -179,7 +178,6 @@ fr_command_dpkg_list (FrCommand *comm) fr_process_start (comm->process); } - static void fr_command_dpkg_extract (FrCommand *comm, const char *from_file, @@ -210,17 +208,14 @@ fr_command_dpkg_extract (FrCommand *comm, fr_process_end_command (comm->process); } - const char *dpkg_mime_type[] = { "application/vnd.debian.binary-package", NULL }; - static const char ** fr_command_dpkg_get_mime_types (FrCommand *comm) { return dpkg_mime_type; } - static FrCommandCap fr_command_dpkg_get_capabilities (FrCommand *comm, const char *mime_type, @@ -235,7 +230,6 @@ fr_command_dpkg_get_capabilities (FrCommand *comm, return capabilities; } - static const char * fr_command_dpkg_get_packages (FrCommand *comm, const char *mime_type) @@ -243,7 +237,6 @@ fr_command_dpkg_get_packages (FrCommand *comm, return PACKAGES ("dpkg"); } - static void fr_command_dpkg_class_init (FrCommandDpkgClass *class) { @@ -262,7 +255,6 @@ fr_command_dpkg_class_init (FrCommandDpkgClass *class) afc->get_packages = fr_command_dpkg_get_packages; } - static void fr_command_dpkg_init (FrCommand *comm) { @@ -275,7 +267,6 @@ fr_command_dpkg_init (FrCommand *comm) comm->propTest = FALSE; } - static void fr_command_dpkg_finalize (GObject *object) { @@ -287,7 +278,6 @@ fr_command_dpkg_finalize (GObject *object) G_OBJECT_CLASS (parent_class)->finalize (object); } - GType fr_command_dpkg_get_type () { |