diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-12-17 17:13:24 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-12-17 17:13:24 +0100 |
commit | a99b48bfdbecf38f306bb7871f44a11435936c68 (patch) | |
tree | 2d78f92d8dd17bef4eebd5763eb8a7449fcedd9d /src/css.cc | |
parent | 730e6f2ce628c817086abe588ce59978b46dfd73 (diff) |
remove unnecessary this->
Diffstat (limited to 'src/css.cc')
-rw-r--r-- | src/css.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -166,8 +166,8 @@ CssRule::CssRule (CssSelector *selector, CssPropertyList *props) { }; CssRule::~CssRule () { - this->selector->unref (); - this->props->unref (); + selector->unref (); + props->unref (); }; void CssRule::apply (CssPropertyList *props, Doctree *docTree) { |