[gegl] operation-keys: make api to get acces paramspec keys public



commit b6cf7399d7034750316e0a373bf3c793bd883d1c
Author: Øyvind Kolås <pippin gimp org>
Date:   Fri May 23 02:50:16 2014 +0200

    operation-keys: make api to get acces paramspec keys public

 gegl/gegl-operations-util.h                   |    5 +++++
 gegl/operation/gegl-operation-property-keys.h |   16 ++++------------
 2 files changed, 9 insertions(+), 12 deletions(-)
---
diff --git a/gegl/gegl-operations-util.h b/gegl/gegl-operations-util.h
index 27e4635..d17a915 100644
--- a/gegl/gegl-operations-util.h
+++ b/gegl/gegl-operations-util.h
@@ -106,7 +106,12 @@ gegl_operation_list_property_keys (const gchar *operation_type,
                                    const gchar *property_name,
                                    guint       *n_keys);
 
+const gchar *gegl_param_spec_get_property_key (GParamSpec  *pspec,
+                                               const gchar *key_name);
 
+void         gegl_param_spec_set_property_key (GParamSpec  *pspec,
+                                               const gchar *key_name,
+                                               const gchar *value);
 
 
 G_END_DECLS
diff --git a/gegl/operation/gegl-operation-property-keys.h b/gegl/operation/gegl-operation-property-keys.h
index 70f9644..cedc04e 100644
--- a/gegl/operation/gegl-operation-property-keys.h
+++ b/gegl/operation/gegl-operation-property-keys.h
@@ -21,18 +21,10 @@
 
 #include <glib-object.h>
 
-const gchar *gegl_param_spec_get_property_key (GParamSpec  *pspec,
-                                               const gchar *key_name);
-
-void         gegl_param_spec_set_property_key (GParamSpec  *pspec,
-                                               const gchar *key_name,
-                                               const gchar *value);
-
-void       gegl_operation_class_set_property_key
-                                            (GeglOperationClass *klass,
-                                             const gchar        *property_name,
-                                             const gchar        *key_name,
-                                             const gchar        *value);
+void gegl_operation_class_set_property_key (GeglOperationClass *klass,
+                                            const gchar        *property_name,
+                                            const gchar        *key_name,
+                                            const gchar        *value);
 
 const gchar *
 gegl_operation_class_get_property_key (GeglOperationClass *operation_class,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]