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