diff options
Diffstat (limited to 'caja')
-rw-r--r-- | caja/Makefile.am | 14 | ||||
-rw-r--r-- | caja/caja-engrampa.c (renamed from caja/caja-fileroller.c) | 10 | ||||
-rw-r--r-- | caja/caja-engrampa.h (renamed from caja/caja-fileroller.h) | 6 | ||||
-rw-r--r-- | caja/engrampa-module.c (renamed from caja/fileroller-module.c) | 2 |
4 files changed, 16 insertions, 16 deletions
diff --git a/caja/Makefile.am b/caja/Makefile.am index e72c1d6..a2a8ce0 100644 --- a/caja/Makefile.am +++ b/caja/Makefile.am @@ -9,14 +9,14 @@ INCLUDES = \ caja_extensiondir=$(CAJA_EXTENSION_DIR) -caja_extension_LTLIBRARIES=libcaja-fileroller.la +caja_extension_LTLIBRARIES=libcaja-engrampa.la -libcaja_fileroller_la_SOURCES = \ - caja-fileroller.c \ - caja-fileroller.h \ - fileroller-module.c +libcaja_engrampa_la_SOURCES = \ + caja-engrampa.c \ + caja-engrampa.h \ + engrampa-module.c -libcaja_fileroller_la_LDFLAGS = -module -avoid-version -no-undefined -libcaja_fileroller_la_LIBADD = $(CAJA_LIBS) +libcaja_engrampa_la_LDFLAGS = -module -avoid-version -no-undefined +libcaja_engrampa_la_LIBADD = $(CAJA_LIBS) -include $(top_srcdir)/git.mk diff --git a/caja/caja-fileroller.c b/caja/caja-engrampa.c index c6864d8..6f6944e 100644 --- a/caja/caja-fileroller.c +++ b/caja/caja-engrampa.c @@ -28,7 +28,7 @@ #include <libcaja-extension/caja-extension-types.h> #include <libcaja-extension/caja-file-info.h> #include <libcaja-extension/caja-menu-provider.h> -#include "caja-fileroller.h" +#include "caja-engrampa.h" static GObjectClass *parent_class; @@ -49,7 +49,7 @@ extract_to_callback (CajaMenuItem *item, uri = caja_file_info_get_uri (file); default_dir = caja_file_info_get_parent_uri (file); - cmd = g_string_new ("file-roller"); + cmd = g_string_new ("engrampa"); g_string_append_printf (cmd, " --default-dir=%s --extract %s", g_shell_quote (default_dir), @@ -81,7 +81,7 @@ extract_here_callback (CajaMenuItem *item, dir = caja_file_info_get_parent_uri (file); - cmd = g_string_new ("file-roller"); + cmd = g_string_new ("engrampa"); g_string_append_printf (cmd," --extract-here"); g_free (dir); @@ -120,7 +120,7 @@ add_callback (CajaMenuItem *item, uri = caja_file_info_get_uri (file); dir = g_path_get_dirname (uri); - cmd = g_string_new ("file-roller"); + cmd = g_string_new ("engrampa"); g_string_append_printf (cmd," --default-dir=%s --add", g_shell_quote (dir)); g_free (dir); @@ -421,7 +421,7 @@ caja_fr_register_type (GTypeModule *module) fr_type = g_type_module_register_type (module, G_TYPE_OBJECT, - "CajaFileRoller", + "CajaEngrampa", &info, 0); g_type_module_add_interface (module, diff --git a/caja/caja-fileroller.h b/caja/caja-engrampa.h index 41a28ab..d41f55d 100644 --- a/caja/caja-fileroller.h +++ b/caja/caja-engrampa.h @@ -21,8 +21,8 @@ * */ -#ifndef CAJA_FILEROLLER_H -#define CAJA_FILEROLLER_H +#ifndef CAJA_RNGRAMPA_H +#define CAJA_RNGRAMPA_H #include <glib-object.h> @@ -48,4 +48,4 @@ void caja_fr_register_type (GTypeModule *module); G_END_DECLS -#endif /* CAJA_FILEROLLER_H */ +#endif /* CAJA_RNGRAMPA_H */ diff --git a/caja/fileroller-module.c b/caja/engrampa-module.c index 3384a70..0eabdef 100644 --- a/caja/fileroller-module.c +++ b/caja/engrampa-module.c @@ -25,7 +25,7 @@ #include <libcaja-extension/caja-extension-types.h> #include <libcaja-extension/caja-column-provider.h> #include <glib/gi18n-lib.h> -#include "caja-fileroller.h" +#include "caja-engrampa.h" void |