diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-17 09:14:00 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-01-17 09:14:00 +0100 |
commit | 8095de030ba4bc82def25da3eaaf5b4b95d7529f (patch) | |
tree | 4229300c4847e5697cca6ab5720beb5d58a4b814 /src/cssparser.hh | |
parent | eda2b7472e13f7fdf95c54feb802c889a6dbe503 (diff) |
some consts
Diffstat (limited to 'src/cssparser.hh')
-rw-r--r-- | src/cssparser.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cssparser.hh b/src/cssparser.hh index 6638496d..6a905625 100644 --- a/src/cssparser.hh +++ b/src/cssparser.hh @@ -45,7 +45,7 @@ typedef enum { typedef struct { const char *symbol; CssValueType type; - const char **enum_symbols; + const char *const *enum_symbols; } CssPropertyInfo; @@ -58,6 +58,6 @@ void a_Css_parse (CssContext *context, int order_count, CssOrigin origin); -extern CssPropertyInfo Css_property_info[CssProperty::CSS_PROPERTY_LAST]; +extern const CssPropertyInfo Css_property_info[CssProperty::CSS_PROPERTY_LAST]; #endif // __CSS_H__ |