diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2008-11-20 14:11:10 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2008-11-20 14:11:10 -0300 |
commit | 18a3ce28a0932c2402a937273a67458a858bc17c (patch) | |
tree | 51bb37212f79243eabdb4964248ca9c9b8e2f101 /src/css.hh | |
parent | 5254928eed42186869555ac082eb184dd4522ac3 (diff) |
Removed lots of compiler warnings, and formatted code to 80 columns.
Used: indent -kr -st -sc -i3 -bad -nbbo -nut
Diffstat (limited to 'src/css.hh')
-rw-r--r-- | src/css.hh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -171,7 +171,8 @@ class CssPropertyList : public lout::misc::SimpleVector <CssProperty> { CssPropertyList() : lout::misc::SimpleVector <CssProperty> (1) { refCount = 0; }; - CssPropertyList(const CssPropertyList &p) : lout::misc::SimpleVector <CssProperty> (p) { + CssPropertyList(const CssPropertyList &p) : + lout::misc::SimpleVector <CssProperty> (p) { refCount = 0; }; |