summaryrefslogtreecommitdiff
path: root/src/fr-command-lrzip.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fr-command-lrzip.c')
-rw-r--r--src/fr-command-lrzip.c13
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 ()
{