[aravis/dom] gc_category: coding style consistency fix.
- From: Emmanuel Pacaud <emmanuel src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [aravis/dom] gc_category: coding style consistency fix.
- Date: Tue, 28 Feb 2012 12:56:46 +0000 (UTC)
commit bdbd2a67ceb50a2dadac69348540b03abcf8031d
Author: Emmanuel Pacaud <emmanuel gnome org>
Date: Tue Feb 28 13:55:59 2012 +0100
gc_category: coding style consistency fix.
src/arvgccategory.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/arvgccategory.c b/src/arvgccategory.c
index 3340231..e8280b2 100644
--- a/src/arvgccategory.c
+++ b/src/arvgccategory.c
@@ -34,7 +34,7 @@ static GObjectClass *parent_class = NULL;
/* ArvDomNode implementation */
static const char *
-_get_node_name (ArvDomNode *node)
+arv_gc_category_get_node_name (ArvDomNode *node)
{
return "Category";
}
@@ -97,7 +97,7 @@ arv_gc_category_init (ArvGcCategory *gc_category)
}
static void
-_finalize (GObject *object)
+arv_gc_category_finalize (GObject *object)
{
ArvGcCategory *category = ARV_GC_CATEGORY (object);
@@ -114,8 +114,8 @@ arv_gc_category_class_init (ArvGcCategoryClass *this_class)
parent_class = g_type_class_peek_parent (this_class);
- object_class->finalize = _finalize;
- dom_node_class->get_node_name = _get_node_name;
+ object_class->finalize = arv_gc_category_finalize;
+ dom_node_class->get_node_name = arv_gc_category_get_node_name;
}
G_DEFINE_TYPE (ArvGcCategory, arv_gc_category, ARV_TYPE_GC_NODE)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]