diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2011-12-30 21:44:31 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2011-12-30 21:44:31 +0100 |
commit | 7c3b1795f94aacce1c44c3c7c821cefc2fe2b671 (patch) | |
tree | d97dc5689eb08479fb798725a7a0c2e9d4c72a0d /src/css.hh | |
parent | ddf5219e77dd82b760bdb2338badb207794355cf (diff) |
cleanup CssStyleSheet a bit
Diffstat (limited to 'src/css.hh')
-rw-r--r-- | src/css.hh | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -439,15 +439,11 @@ class CssStyleSheet { }; static const int ntags = 90; // \todo replace 90 - RuleList *elementTable[ntags]; - RuleMap *idTable; - RuleMap *classTable; - RuleList *anyTable; + RuleList elementTable[ntags], anyTable; + RuleMap idTable, classTable; public: - CssStyleSheet(); - ~CssStyleSheet(); void addRule (CssRule *rule); void apply (CssPropertyList *props, Doctree *docTree, const DoctreeNode *node); |