diff options
Diffstat (limited to 'src/styleengine.cc')
-rw-r--r-- | src/styleengine.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/styleengine.cc b/src/styleengine.cc index 9eaca826..d1d3b022 100644 --- a/src/styleengine.cc +++ b/src/styleengine.cc @@ -69,10 +69,10 @@ void StyleEngine::startElement (int element, const char *id, const char *klass, * \brief set properties that were definded using (mostly deprecated) HTML * attributes (e.g. bgColor). */ -void StyleEngine::setNonCssProperties (CssPropertyList *props) { +void StyleEngine::setNonCssHints (CssPropertyList *nonCssHints) { if (stack->getRef (stack->size () - 1)->style) stack->getRef (stack->size () - 1)->style->unref (); - style0 (props); // evaluate now, so caller can free props + style0 (nonCssHints); // evaluate now, so caller can free nonCssHints } /** |