[nautilus-actions] naxml-module is renamed to fma-xml-module
- From: Pierre Wieser <pwieser src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus-actions] naxml-module is renamed to fma-xml-module
- Date: Wed, 15 Feb 2017 22:51:23 +0000 (UTC)
commit c10e96d690f8fb8a4327afdcbdff82854d2a79bf
Author: Pierre Wieser <pwieser trychlos org>
Date: Tue Sep 8 17:24:42 2015 +0200
naxml-module is renamed to fma-xml-module
src/io-xml/Makefile.am | 10 +++++-----
src/io-xml/{naxml-module.c => fma-xml-module.c} | 16 ++++++++--------
2 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/src/io-xml/Makefile.am b/src/io-xml/Makefile.am
index 06a7d7d..6c4ed27 100644
--- a/src/io-xml/Makefile.am
+++ b/src/io-xml/Makefile.am
@@ -41,13 +41,13 @@ AM_CPPFLAGS += \
$(NULL)
libna_io_xml_la_SOURCES = \
- naxml-module.c \
- naxml-provider.c \
- naxml-provider.h \
- fma-xml-keys.c \
- fma-xml-keys.h \
fma-xml-formats.c \
fma-xml-formats.h \
+ fma-xml-keys.c \
+ fma-xml-keys.h \
+ fma-xml-module.c \
+ naxml-provider.c \
+ naxml-provider.h \
naxml-reader.c \
naxml-reader.h \
naxml-writer.c \
diff --git a/src/io-xml/naxml-module.c b/src/io-xml/fma-xml-module.c
similarity index 84%
rename from src/io-xml/naxml-module.c
rename to src/io-xml/fma-xml-module.c
index 4cd1fb5..27932aa 100644
--- a/src/io-xml/naxml-module.c
+++ b/src/io-xml/fma-xml-module.c
@@ -40,7 +40,7 @@
* - be registered in fma_extension_startup()
* - be addressed in fma_extension_list_types().
*/
-#define NAXML_TYPES_COUNT 1
+#define FMA_TYPES_COUNT 1
/*
* fma_extension_startup:
@@ -50,7 +50,7 @@
gboolean
fma_extension_startup( GTypeModule *module )
{
- static const gchar *thisfn = "naxml_module_fma_extension_startup";
+ static const gchar *thisfn = "fma_xml_module_fma_extension_startup";
g_debug( "%s: module=%p", thisfn, ( void * ) module );
@@ -67,7 +67,7 @@ fma_extension_startup( GTypeModule *module )
guint
fma_extension_get_version( void )
{
- static const gchar *thisfn = "naxml_module_fma_extension_get_version";
+ static const gchar *thisfn = "fma_xml_module_fma_extension_get_version";
guint version;
version = 1;
@@ -85,17 +85,17 @@ fma_extension_get_version( void )
guint
fma_extension_list_types( const GType **types )
{
- static const gchar *thisfn = "naxml_module_fma_extension_list_types";
- static GType types_list [1+NAXML_TYPES_COUNT];
+ static const gchar *thisfn = "fma_xml_module_fma_extension_list_types";
+ static GType types_list [1+FMA_TYPES_COUNT];
g_debug( "%s: types=%p", thisfn, ( void * ) types );
types_list[0] = NAXML_TYPE_PROVIDER;
- types_list[NAXML_TYPES_COUNT] = 0;
+ types_list[FMA_TYPES_COUNT] = 0;
*types = types_list;
- return( NAXML_TYPES_COUNT );
+ return( FMA_TYPES_COUNT );
}
/*
@@ -106,7 +106,7 @@ fma_extension_list_types( const GType **types )
void
fma_extension_shutdown( void )
{
- static const gchar *thisfn = "naxml_module_fma_extension_shutdown";
+ static const gchar *thisfn = "fma_xml_module_fma_extension_shutdown";
g_debug( "%s", thisfn );
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]