summaryrefslogtreecommitdiff
path: root/src/fr-command-nomarch.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-27 17:40:17 +0200
committerraveit65 <[email protected]>2021-12-11 15:59:33 +0100
commit6c55334ad9b03006686e2db6c6f6167677a2f510 (patch)
treeb558cc0ad6d97c36b449dbcb2afecb3b9002a565 /src/fr-command-nomarch.c
parent85909393571d91b3c267afe5341e54bfae5a6d50 (diff)
downloadengrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.bz2
engrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.xz
Use a blank line at most
Diffstat (limited to 'src/fr-command-nomarch.c')
-rw-r--r--src/fr-command-nomarch.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/fr-command-nomarch.c b/src/fr-command-nomarch.c
index c23248a..67655e7 100644
--- a/src/fr-command-nomarch.c
+++ b/src/fr-command-nomarch.c
@@ -44,7 +44,6 @@ static void fr_command_nomarch_finalize (GObject *object);
static FrCommandClass *parent_class = NULL;
-
/* -- list -- */
static time_t
@@ -95,7 +94,6 @@ list__process_line (char *line,
fr_command_add_file (comm, fdata);
}
-
static void
fr_command_nomarch_list (FrCommand *comm)
{
@@ -108,7 +106,6 @@ fr_command_nomarch_list (FrCommand *comm)
fr_process_start (comm->process);
}
-
static void
fr_command_nomarch_add (FrCommand *comm,
const char *from_file,
@@ -137,7 +134,6 @@ fr_command_nomarch_add (FrCommand *comm,
fr_process_end_command (comm->process);
}
-
static void
fr_command_nomarch_delete (FrCommand *comm,
const char *from_file,
@@ -155,7 +151,6 @@ fr_command_nomarch_delete (FrCommand *comm,
fr_process_end_command (comm->process);
}
-
static void
fr_command_nomarch_extract (FrCommand *comm,
const char *from_file,
@@ -180,7 +175,6 @@ fr_command_nomarch_extract (FrCommand *comm,
fr_process_end_command (comm->process);
}
-
static void
fr_command_nomarch_test (FrCommand *comm)
{
@@ -190,7 +184,6 @@ fr_command_nomarch_test (FrCommand *comm)
fr_process_end_command (comm->process);
}
-
static void
fr_command_nomarch_handle_error (FrCommand *comm,
FrProcError *error)
@@ -203,17 +196,14 @@ fr_command_nomarch_handle_error (FrCommand *comm,
}
}
-
const char *nomarch_mime_type[] = { "application/x-arc", NULL };
-
static const char **
fr_command_nomarch_get_mime_types (FrCommand *comm)
{
return nomarch_mime_type;
}
-
static FrCommandCap
fr_command_nomarch_get_capabilities (FrCommand *comm,
const char *mime_type,
@@ -230,7 +220,6 @@ fr_command_nomarch_get_capabilities (FrCommand *comm,
return capabilities;
}
-
static const char *
fr_command_nomarch_get_packages (FrCommand *comm,
const char *mime_type)
@@ -238,7 +227,6 @@ fr_command_nomarch_get_packages (FrCommand *comm,
return PACKAGES ("nomarch,arc");
}
-
static void
fr_command_nomarch_class_init (FrCommandNomarchClass *class)
{
@@ -261,7 +249,6 @@ fr_command_nomarch_class_init (FrCommandNomarchClass *class)
afc->get_packages = fr_command_nomarch_get_packages;
}
-
static void
fr_command_nomarch_init (FrCommand *comm)
{
@@ -280,7 +267,6 @@ fr_command_nomarch_init (FrCommand *comm)
nomarch_comm->fdata = FALSE;
}
-
static void
fr_command_nomarch_finalize (GObject *object)
{
@@ -292,7 +278,6 @@ fr_command_nomarch_finalize (GObject *object)
G_OBJECT_CLASS (parent_class)->finalize (object);
}
-
GType
fr_command_nomarch_get_type ()
{