summaryrefslogtreecommitdiff
path: root/src/cssparser.hh
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-02-05 19:23:33 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-02-05 19:23:33 +0100
commit1326c5a9c7d5a7449c85c26cc286936f15cde3c1 (patch)
tree1cdf1c2276bd20bcdbd5abc08b2c63b152854e7e /src/cssparser.hh
parent4eb1e41793ec65d83bb41f58388edee610e3db8e (diff)
move CssProperty::Name and CssProperty::Value out of CssProperty class
Diffstat (limited to 'src/cssparser.hh')
-rw-r--r--src/cssparser.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cssparser.hh b/src/cssparser.hh
index f88a780e..b10595fb 100644
--- a/src/cssparser.hh
+++ b/src/cssparser.hh
@@ -6,7 +6,7 @@
/* The last three ones are never parsed. */
#define CSS_NUM_INTERNAL_PROPERTIES 3
#define CSS_NUM_PARSED_PROPERTIES \
- (CssProperty::CSS_PROPERTY_LAST - CSS_NUM_INTERNAL_PROPERTIES)
+ (CSS_PROPERTY_LAST - CSS_NUM_INTERNAL_PROPERTIES)
typedef enum {
@@ -55,6 +55,6 @@ void a_Css_parse (CssContext *context,
CssPropertyList *a_Css_parse_declaration(const char *buf, int buflen);
-extern const CssPropertyInfo Css_property_info[CssProperty::CSS_PROPERTY_LAST];
+extern const CssPropertyInfo Css_property_info[CSS_PROPERTY_LAST];
#endif // __CSS_H__