summaryrefslogtreecommitdiff
path: root/src/arch/operand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/operand.c')
-rw-r--r--src/arch/operand.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/operand.c b/src/arch/operand.c
index f2f356b..d3e837c 100644
--- a/src/arch/operand.c
+++ b/src/arch/operand.c
@@ -51,7 +51,7 @@ static void g_arch_operand_comparable_object_iface_init(GComparableObjectInterfa
static void g_arch_operand_hashable_object_iface_init(GHashableObjectInterface *);
/* Procède à l'initialisation de l'interface de sérialisation. */
-static void g_arch_operand_serializable_iface_init(GSerializableObjectInterface *);
+static void g_arch_operand_serializable_object_iface_init(GSerializableObjectInterface *);
/* Procède à l'initialisation de l'interface de rassemblement. */
static void g_arch_operand_singleton_candidate_iface_init(GSingletonCandidateInterface *);
@@ -117,7 +117,7 @@ static bool g_arch_operand_is_read_only(const GSingletonCandidate *);
G_DEFINE_TYPE_WITH_CODE(GArchOperand, g_arch_operand, G_TYPE_THICK_OBJECT,
G_IMPLEMENT_INTERFACE(G_TYPE_COMPARABLE_OBJECT, g_arch_operand_comparable_object_iface_init)
G_IMPLEMENT_INTERFACE(G_TYPE_HASHABLE_OBJECT, g_arch_operand_hashable_object_iface_init)
- G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_arch_operand_serializable_iface_init)
+ G_IMPLEMENT_INTERFACE(G_TYPE_SERIALIZABLE_OBJECT, g_arch_operand_serializable_object_iface_init)
G_IMPLEMENT_INTERFACE(G_TYPE_SINGLETON_CANDIDATE, g_arch_operand_singleton_candidate_iface_init)
G_IMPLEMENT_INTERFACE(G_TYPE_STRING_BUILDER, g_arch_operand_string_builder_iface_init));
@@ -196,7 +196,7 @@ static void g_arch_operand_hashable_object_iface_init(GHashableObjectInterface *
* *
******************************************************************************/
-static void g_arch_operand_serializable_iface_init(GSerializableObjectInterface *iface)
+static void g_arch_operand_serializable_object_iface_init(GSerializableObjectInterface *iface)
{
iface->load = g_arch_operand_load;
iface->store = g_arch_operand_store;