diff options
author | Havoc Pennington <hp@pobox.com> | 1999-10-12 00:58:05 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 1999-10-12 00:58:05 +0000 |
commit | 881b278dcd6e1d448531c007b23cdc33e53232ca (patch) | |
tree | 05a54b91b13d421c5cbb18b091e5ee98b84ae37c /gconf/gconf-schema.c | |
parent | 24065efa30a2bb1bf3faa501c09603c8b5ba4a97 (diff) | |
download | gconf-881b278dcd6e1d448531c007b23cdc33e53232ca.tar.gz |
For all files, s/g_conf/gconf
1999-10-11 Havoc Pennington <hp@pobox.com>
* For all files, s/g_conf/gconf
Diffstat (limited to 'gconf/gconf-schema.c')
-rw-r--r-- | gconf/gconf-schema.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gconf/gconf-schema.c b/gconf/gconf-schema.c index 02a561ba..7383b574 100644 --- a/gconf/gconf-schema.c +++ b/gconf/gconf-schema.c @@ -21,7 +21,7 @@ GConfSchema* -g_conf_schema_new(void) +gconf_schema_new(void) { GConfSchema* sc; @@ -33,7 +33,7 @@ g_conf_schema_new(void) } void -g_conf_schema_destroy(GConfSchema* sc) +gconf_schema_destroy(GConfSchema* sc) { if (sc->short_desc) g_free(sc->short_desc); @@ -48,11 +48,11 @@ g_conf_schema_destroy(GConfSchema* sc) } GConfSchema* -g_conf_schema_copy(GConfSchema* sc) +gconf_schema_copy(GConfSchema* sc) { GConfSchema* dest; - dest = g_conf_schema_new(); + dest = gconf_schema_new(); dest->type = sc->type; @@ -66,13 +66,13 @@ g_conf_schema_copy(GConfSchema* sc) } void -g_conf_schema_set_type(GConfSchema* sc, GConfValueType type) +gconf_schema_set_type(GConfSchema* sc, GConfValueType type) { sc->type = type; } void -g_conf_schema_set_short_desc(GConfSchema* sc, const gchar* desc) +gconf_schema_set_short_desc(GConfSchema* sc, const gchar* desc) { if (sc->short_desc) g_free(sc->short_desc); @@ -84,7 +84,7 @@ g_conf_schema_set_short_desc(GConfSchema* sc, const gchar* desc) } void -g_conf_schema_set_long_desc(GConfSchema* sc, const gchar* desc) +gconf_schema_set_long_desc(GConfSchema* sc, const gchar* desc) { if (sc->long_desc) g_free(sc->long_desc); @@ -96,7 +96,7 @@ g_conf_schema_set_long_desc(GConfSchema* sc, const gchar* desc) } void -g_conf_schema_set_owner(GConfSchema* sc, const gchar* owner) +gconf_schema_set_owner(GConfSchema* sc, const gchar* owner) { if (sc->owner) g_free(sc->owner); @@ -108,19 +108,19 @@ g_conf_schema_set_owner(GConfSchema* sc, const gchar* owner) } void -g_conf_schema_set_default_value(GConfSchema* sc, GConfValue* val) +gconf_schema_set_default_value(GConfSchema* sc, GConfValue* val) { if (sc->default_value != NULL) - g_conf_value_destroy(sc->default_value); + gconf_value_destroy(sc->default_value); - sc->default_value = g_conf_value_copy(val); + sc->default_value = gconf_value_copy(val); } void -g_conf_schema_set_default_value_nocopy(GConfSchema* sc, GConfValue* val) +gconf_schema_set_default_value_nocopy(GConfSchema* sc, GConfValue* val) { if (sc->default_value != NULL) - g_conf_value_destroy(sc->default_value); + gconf_value_destroy(sc->default_value); sc->default_value = val; } |