summaryrefslogtreecommitdiff
path: root/gio/gsettingsschema-internal.h
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-11-28 12:00:40 -0500
committerRyan Lortie <desrt@desrt.ca>2013-01-18 13:03:28 -0500
commit6f8f1f7097cbef698b4c7be5816bc9d3864ec744 (patch)
treee06b86045270f184ae9467ed2c35f0d2115245e1 /gio/gsettingsschema-internal.h
parentdbf447292d83b54be321c33025aea2e4d448d4f5 (diff)
Remove most use of G_GNUC_INTERNAL
Now that we use an explicit list of symbols to export, the G_GNUC_INTERNAL is redundant. https://bugzilla.gnome.org/show_bug.cgi?id=688681
Diffstat (limited to 'gio/gsettingsschema-internal.h')
-rw-r--r--gio/gsettingsschema-internal.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/gio/gsettingsschema-internal.h b/gio/gsettingsschema-internal.h
index f9d79eb68..7b002c2be 100644
--- a/gio/gsettingsschema-internal.h
+++ b/gio/gsettingsschema-internal.h
@@ -41,49 +41,34 @@ typedef struct
GVariant *default_value;
} GSettingsSchemaKey;
-G_GNUC_INTERNAL
const gchar * g_settings_schema_get_gettext_domain (GSettingsSchema *schema);
-G_GNUC_INTERNAL
GVariantIter * g_settings_schema_get_value (GSettingsSchema *schema,
const gchar *key);
-G_GNUC_INTERNAL
gboolean g_settings_schema_has_key (GSettingsSchema *schema,
const gchar *key);
-G_GNUC_INTERNAL
const GQuark * g_settings_schema_list (GSettingsSchema *schema,
gint *n_items);
-G_GNUC_INTERNAL
const gchar * g_settings_schema_get_string (GSettingsSchema *schema,
const gchar *key);
-G_GNUC_INTERNAL
void g_settings_schema_key_init (GSettingsSchemaKey *key,
GSettingsSchema *schema,
const gchar *name);
-G_GNUC_INTERNAL
void g_settings_schema_key_clear (GSettingsSchemaKey *key);
-G_GNUC_INTERNAL
gboolean g_settings_schema_key_type_check (GSettingsSchemaKey *key,
GVariant *value);
-G_GNUC_INTERNAL
gboolean g_settings_schema_key_range_check (GSettingsSchemaKey *key,
GVariant *value);
-G_GNUC_INTERNAL
GVariant * g_settings_schema_key_range_fixup (GSettingsSchemaKey *key,
GVariant *value);
-G_GNUC_INTERNAL
GVariant * g_settings_schema_key_get_translated_default (GSettingsSchemaKey *key);
-G_GNUC_INTERNAL
gint g_settings_schema_key_to_enum (GSettingsSchemaKey *key,
GVariant *value);
-G_GNUC_INTERNAL
GVariant * g_settings_schema_key_from_enum (GSettingsSchemaKey *key,
gint value);
-G_GNUC_INTERNAL
guint g_settings_schema_key_to_flags (GSettingsSchemaKey *key,
GVariant *value);
-G_GNUC_INTERNAL
GVariant * g_settings_schema_key_from_flags (GSettingsSchemaKey *key,
guint value);