[gtk+/gtk-style-context] GtkThemingEngine: Do not use possible reserved word.
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/gtk-style-context] GtkThemingEngine: Do not use possible reserved word.
- Date: Mon, 15 Nov 2010 22:29:41 +0000 (UTC)
commit dba6b58795043db340f68aedabd6dd3516d6647f
Author: Carlos Garnacho <carlosg gnome org>
Date: Sun Nov 14 19:47:09 2010 +0100
GtkThemingEngine: Do not use possible reserved word.
gtk/gtkthemingengine.c | 14 +++++++-------
gtk/gtkthemingengine.h | 2 +-
2 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/gtk/gtkthemingengine.c b/gtk/gtkthemingengine.c
index e87335e..f05ecf7 100644
--- a/gtk/gtkthemingengine.c
+++ b/gtk/gtkthemingengine.c
@@ -331,14 +331,14 @@ _gtk_theming_engine_set_context (GtkThemingEngine *engine,
/**
* gtk_theming_engine_register_property:
* @engine: a #GtkThemingEngine
- * @namespace: namespace for the property name
+ * @name_space: namespace for the property name
* @parse_func: parsing function to use, or %NULL
* @pspec: the #GParamSpec for the new property
*
* Registers a property so it can be used in the CSS file format,
* on the CSS file the property will look like
- * "-${ namespace}-${property_name}". being
- * ${property_name} the given to @pspec. @namespace will usually
+ * "-${ name_space}-${property_name}". being
+ * ${property_name} the given to @pspec. @name_space will usually
* be the theme engine name.
*
* For any type a @parse_func may be provided, being this function
@@ -370,18 +370,18 @@ _gtk_theming_engine_set_context (GtkThemingEngine *engine,
* Since: 3.0
**/
void
-gtk_theming_engine_register_property (const gchar *namespace,
+gtk_theming_engine_register_property (const gchar *name_space,
GtkStylePropertyParser parse_func,
GParamSpec *pspec)
{
gchar *name;
- g_return_if_fail (namespace != NULL);
- g_return_if_fail (strchr (namespace, ' ') == NULL);
+ g_return_if_fail (name_space != NULL);
+ g_return_if_fail (strchr (name_space, ' ') == NULL);
g_return_if_fail (G_IS_PARAM_SPEC (pspec));
/* FIXME: hack hack hack, replacing pspec->name to include namespace */
- name = g_strdup_printf ("-%s-%s", namespace, pspec->name);
+ name = g_strdup_printf ("-%s-%s", name_space, pspec->name);
g_free (pspec->name);
pspec->name = name;
diff --git a/gtk/gtkthemingengine.h b/gtk/gtkthemingengine.h
index 784737f..ee443d6 100644
--- a/gtk/gtkthemingengine.h
+++ b/gtk/gtkthemingengine.h
@@ -171,7 +171,7 @@ GType gtk_theming_engine_get_type (void) G_GNUC_CONST;
void _gtk_theming_engine_set_context (GtkThemingEngine *engine,
GtkStyleContext *context);
-void gtk_theming_engine_register_property (const gchar *namespace,
+void gtk_theming_engine_register_property (const gchar *name_space,
GtkStylePropertyParser parse_func,
GParamSpec *pspec);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]