summaryrefslogtreecommitdiff
path: root/ccss-gtk
diff options
context:
space:
mode:
authorRobert Staudinger <robsta@gnome.org>2009-08-10 18:37:06 +0200
committerRobert Staudinger <robsta@gnome.org>2009-08-10 18:37:06 +0200
commit5df8a82fdda1c97cb8bf9ad7698f45415e0f2c21 (patch)
treef6f58865c183cc21f50c8498f95da62198c54849 /ccss-gtk
parent29e7d7a44cf33fa19b8118ee89002fb628f512d5 (diff)
[property] Rename "ccss_property_base_t" to "ccss_property_t".
Diffstat (limited to 'ccss-gtk')
-rw-r--r--ccss-gtk/ccss-gtk-property.c2
-rw-r--r--ccss-gtk/ccss-gtk-property.h4
-rw-r--r--ccss-gtk/ccss-gtk-stylesheet.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/ccss-gtk/ccss-gtk-property.c b/ccss-gtk/ccss-gtk-property.c
index d6e631e..2c9caea 100644
--- a/ccss-gtk/ccss-gtk-property.c
+++ b/ccss-gtk/ccss-gtk-property.c
@@ -565,7 +565,7 @@ ccss_gtk_property_set_fallback_class (ccss_property_class_t const *property_clas
}
bool
-ccss_gtk_property_is_style_property (ccss_property_base_t const *self)
+ccss_gtk_property_is_style_property (ccss_property_t const *self)
{
return self->property_class->destroy ==
(ccss_property_destroy_f) property_destroy;
diff --git a/ccss-gtk/ccss-gtk-property.h b/ccss-gtk/ccss-gtk-property.h
index c2c201c..62c03dc 100644
--- a/ccss-gtk/ccss-gtk-property.h
+++ b/ccss-gtk/ccss-gtk-property.h
@@ -32,7 +32,7 @@
#include <gtk/gtk.h>
typedef struct {
- ccss_property_base_t base;
+ ccss_property_t base;
char *class_name;
char *property_name;
GType gtype;
@@ -52,7 +52,7 @@ typedef struct {
} ccss_gtk_property_t;
bool
-ccss_gtk_property_is_style_property (ccss_property_base_t const *self);
+ccss_gtk_property_is_style_property (ccss_property_t const *self);
ccss_property_class_t const *
ccss_gtk_property_get_property_classes (void);
diff --git a/ccss-gtk/ccss-gtk-stylesheet.c b/ccss-gtk/ccss-gtk-stylesheet.c
index 2532285..0d249af 100644
--- a/ccss-gtk/ccss-gtk-stylesheet.c
+++ b/ccss-gtk/ccss-gtk-stylesheet.c
@@ -104,7 +104,7 @@ style_iterator (ccss_style_t const *style,
char const *property_name,
GSList **style_properties)
{
- ccss_property_base_t const *property;
+ ccss_property_t const *property;
ccss_gtk_property_t const *self;
char *prefix;
char *rc_string;