diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-10-30 18:48:42 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-10-30 18:48:42 +0100 |
commit | ac6ced5a674680f3ebadc0ce384203efcb5f0fc5 (patch) | |
tree | feaa34a75eafb35673c021029c1fb53879230ef7 /src/html_common.hh | |
parent | 7cf2f77ab818b7455f9556e61a948cc858fbb68d (diff) |
remove nonCssProperties from Node
Diffstat (limited to 'src/html_common.hh')
-rw-r--r-- | src/html_common.hh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/html_common.hh b/src/html_common.hh index d05ac495..28ce5231 100644 --- a/src/html_common.hh +++ b/src/html_common.hh @@ -38,6 +38,7 @@ * Change one toplevel attribute. var should be an identifier. val is * only evaluated once, so you can safely use a function call for it. */ +#if 0 #define HTML_SET_TOP_ATTR(html, var, val) \ do { \ StyleAttrs style_attrs; \ @@ -50,7 +51,9 @@ Style::create (HT2LT(html), &style_attrs); \ old_style->unref (); \ } while (FALSE) - +#else +#define HTML_SET_TOP_ATTR(html, var, val) +#endif /* * Typedefs */ |