summaryrefslogtreecommitdiff
path: root/gtk/gtkstyle.h
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2009-03-10 18:58:23 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2009-03-10 18:58:23 +0000
commit013cd9bbda94be803842b16857a1176c648fe71a (patch)
treee2fe1ad68286d8afde110e2aa29fc27ab711f1a6 /gtk/gtkstyle.h
parent4b497ad5e84ee33710ee01426e82a5e9e6b319ff (diff)
downloadgtk+-013cd9bbda94be803842b16857a1176c648fe71a.tar.gz
Bug 574561 – gtk_style_get "shadows" g_object_get
* gtk/gtk.symbols: * gtk/gtkstyle.[hc]: Rename gtk_style_get_property to gtk_style_get_style_property to avoid problems for language bindings. Pointed out by Torsten Schoenfeld. svn path=/trunk/; revision=22502
Diffstat (limited to 'gtk/gtkstyle.h')
-rw-r--r--gtk/gtkstyle.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/gtk/gtkstyle.h b/gtk/gtkstyle.h
index 2b7d66734c..a6af1779c1 100644
--- a/gtk/gtkstyle.h
+++ b/gtk/gtkstyle.h
@@ -863,18 +863,18 @@ GtkBorder *gtk_border_new (void) G_GNUC_MALLOC;
GtkBorder *gtk_border_copy (const GtkBorder *border_);
void gtk_border_free (GtkBorder *border_);
-void gtk_style_get_property (GtkStyle *style,
- GType widget_type,
- const gchar *property_name,
- GValue *value);
-void gtk_style_get_valist (GtkStyle *style,
- GType widget_type,
- const gchar *first_property_name,
- va_list var_args);
-void gtk_style_get (GtkStyle *style,
- GType widget_type,
- const gchar *first_property_name,
- ...) G_GNUC_NULL_TERMINATED;
+void gtk_style_get_style_property (GtkStyle *style,
+ GType widget_type,
+ const gchar *property_name,
+ GValue *value);
+void gtk_style_get_valist (GtkStyle *style,
+ GType widget_type,
+ const gchar *first_property_name,
+ va_list var_args);
+void gtk_style_get (GtkStyle *style,
+ GType widget_type,
+ const gchar *first_property_name,
+ ...) G_GNUC_NULL_TERMINATED;
/* --- private API --- */
const GValue* _gtk_style_peek_property_value (GtkStyle *style,