diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-03-15 22:18:20 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-03-15 22:18:20 +0100 |
commit | 5f5e05347d4898766d1c06c41c6c56e23b71bcd7 (patch) | |
tree | 64a97621dcdfc4c0b0383878b555d37fd200f456 /src/css.cc | |
parent | ce04e3431c9d6658689b6cac94ac59f9dba60a78 (diff) |
move CssPropertyInfo definition to cssparser.cc
Diffstat (limited to 'src/css.cc')
-rw-r--r-- | src/css.cc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -20,7 +20,8 @@ using namespace dw::core::style; void CssProperty::print () { - fprintf (stderr, "%s - %d\n", Css_property_info[name].symbol, value.intVal); + fprintf (stderr, "%s - %d\n", + CssParser::propertyNameString((CssPropertyName) name), value.intVal); } CssPropertyList::~CssPropertyList () { |