summaryrefslogtreecommitdiff
path: root/src/fr-command-cfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fr-command-cfile.c')
-rw-r--r--src/fr-command-cfile.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/fr-command-cfile.c b/src/fr-command-cfile.c
index a914abe..d2a2afa 100644
--- a/src/fr-command-cfile.c
+++ b/src/fr-command-cfile.c
@@ -37,12 +37,10 @@
#include "fr-command.h"
#include "fr-command-cfile.h"
-
/* Parent Class */
static FrCommandClass *parent_class = NULL;
-
static char *
get_uncompressed_name_from_archive (FrCommand *comm,
const char *archive)
@@ -94,7 +92,6 @@ get_uncompressed_name_from_archive (FrCommand *comm,
return filename;
}
-
static void
list__process_line (char *line,
gpointer data)
@@ -136,7 +133,6 @@ list__process_line (char *line,
fr_command_add_file (comm, fdata);
}
-
static void
fr_command_cfile_list (FrCommand *comm)
{
@@ -194,7 +190,6 @@ fr_command_cfile_list (FrCommand *comm)
}
}
-
static void
fr_command_cfile_add (FrCommand *comm,
const char *from_file,
@@ -333,7 +328,6 @@ fr_command_cfile_add (FrCommand *comm,
g_free (temp_dir);
}
-
static void
fr_command_cfile_delete (FrCommand *comm,
const char *from_file,
@@ -342,7 +336,6 @@ fr_command_cfile_delete (FrCommand *comm,
/* never called */
}
-
static void
fr_command_cfile_extract (FrCommand *comm,
const char *from_file,
@@ -545,14 +538,12 @@ const char *cfile_mime_type[] = { "application/x-gzip",
ZSTD_MIME_TYPE,
NULL };
-
static const char **
fr_command_cfile_get_mime_types (FrCommand *comm)
{
return cfile_mime_type;
}
-
static FrCommandCap
fr_command_cfile_get_capabilities (FrCommand *comm,
const char *mime_type,
@@ -607,7 +598,6 @@ fr_command_cfile_get_capabilities (FrCommand *comm,
return capabilities;
}
-
static void
fr_command_cfile_finalize (GObject *object)
{
@@ -619,7 +609,6 @@ fr_command_cfile_finalize (GObject *object)
G_OBJECT_CLASS (parent_class)->finalize (object);
}
-
static const char *
fr_command_cfile_get_packages (FrCommand *comm,
const char *mime_type)
@@ -648,7 +637,6 @@ fr_command_cfile_get_packages (FrCommand *comm,
return NULL;
}
-
static void
fr_command_cfile_class_init (FrCommandCFileClass *class)
{
@@ -670,7 +658,6 @@ fr_command_cfile_class_init (FrCommandCFileClass *class)
afc->get_packages = fr_command_cfile_get_packages;
}
-
static void
fr_command_cfile_init (FrCommand *comm)
{
@@ -683,7 +670,6 @@ fr_command_cfile_init (FrCommand *comm)
comm->propTest = TRUE;
}
-
GType
fr_command_cfile_get_type ()
{