summaryrefslogtreecommitdiff
path: root/ccss/ccss-grammar.c
diff options
context:
space:
mode:
authorRobert Staudinger <robsta@gnome.org>2009-04-09 10:25:35 +0200
committerRobert Staudinger <robsta@gnome.org>2009-04-09 10:25:35 +0200
commit75ae1c2c57cb77819f57cbd7b466d57bebad674f (patch)
treefd84938c8ff0ca0c49d9eeb36db7342a901217c8 /ccss/ccss-grammar.c
parentecce7069de6d523f208032430ca8910bb539efc3 (diff)
Intenal renamings for better consistency.
Diffstat (limited to 'ccss/ccss-grammar.c')
-rw-r--r--ccss/ccss-grammar.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/ccss/ccss-grammar.c b/ccss/ccss-grammar.c
index 4c20cc7..3c6e579 100644
--- a/ccss/ccss-grammar.c
+++ b/ccss/ccss-grammar.c
@@ -21,7 +21,7 @@
#include <glib.h>
#include "ccss-grammar-priv.h"
-#include "ccss-property-generic.h"
+#include "ccss-property-parser.h"
#include "ccss-stylesheet-priv.h"
#include "ccss-background-parser.h"
@@ -51,7 +51,7 @@ ccss_grammar_create_generic (void)
self->properties = g_hash_table_new (g_str_hash, g_str_equal);
self->functions = g_hash_table_new (g_str_hash, g_str_equal);
- ccss_grammar_add_properties (self, ccss_property_generic_get_ptable ());
+ ccss_grammar_add_properties (self, ccss_property_parser_get_property_classes ());
return self;
}
@@ -72,11 +72,11 @@ ccss_grammar_create_css (void)
self = ccss_grammar_create_generic ();
- ccss_grammar_add_properties (self, ccss_background_get_ptable ());
- ccss_grammar_add_properties (self, ccss_border_get_ptable ());
- ccss_grammar_add_properties (self, ccss_border_image_get_ptable ());
- ccss_grammar_add_properties (self, ccss_color_get_ptable ());
- ccss_grammar_add_properties (self, ccss_padding_get_ptable ());
+ ccss_grammar_add_properties (self, ccss_background_parser_get_property_classes ());
+ ccss_grammar_add_properties (self, ccss_border_parser_get_property_classes ());
+ ccss_grammar_add_properties (self, ccss_border_image_parser_get_property_classes ());
+ ccss_grammar_add_properties (self, ccss_color_parser_get_property_classes ());
+ ccss_grammar_add_properties (self, ccss_padding_parser_get_property_classes ());
return self;
}