[gegl] gegl: Namespace gegl-config.c
- From: Martin Nordholts <martinn src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] gegl: Namespace gegl-config.c
- Date: Wed, 13 Oct 2010 17:16:56 +0000 (UTC)
commit 9f4162abe0f5d8aa1fab6ff3aee88736497d44e8
Author: Martin Nordholts <martinn src gnome org>
Date: Wed Oct 13 19:26:41 2010 +0200
gegl: Namespace gegl-config.c
For breakpoint and stack trace sanity.
gegl/gegl-config.c | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/gegl/gegl-config.c b/gegl/gegl-config.c
index 8c614eb..c1d5bc7 100644
--- a/gegl/gegl-config.c
+++ b/gegl/gegl-config.c
@@ -42,10 +42,10 @@ enum
};
static void
-get_property (GObject *gobject,
- guint property_id,
- GValue *value,
- GParamSpec *pspec)
+gegl_config_get_property (GObject *gobject,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec)
{
GeglConfig *config = GEGL_CONFIG (gobject);
@@ -90,10 +90,10 @@ get_property (GObject *gobject,
}
static void
-set_property (GObject *gobject,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec)
+gegl_config_set_property (GObject *gobject,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec)
{
GeglConfig *config = GEGL_CONFIG (gobject);
@@ -141,7 +141,7 @@ set_property (GObject *gobject,
}
static void
-finalize (GObject *gobject)
+gegl_config_finalize (GObject *gobject)
{
GeglConfig *config = GEGL_CONFIG (gobject);
@@ -158,9 +158,9 @@ gegl_config_class_init (GeglConfigClass *klass)
parent_class = g_type_class_peek_parent (klass);
- gobject_class->set_property = set_property;
- gobject_class->get_property = get_property;
- gobject_class->finalize = finalize;
+ gobject_class->set_property = gegl_config_set_property;
+ gobject_class->get_property = gegl_config_get_property;
+ gobject_class->finalize = gegl_config_finalize;
g_object_class_install_property (gobject_class, PROP_TILE_WIDTH,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]