diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-10-29 16:44:28 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-10-29 16:44:28 +0100 |
commit | b8df95008c6a2e36aaac09f761e4c64a3520ac45 (patch) | |
tree | b61ac3242a1170dc6ffdfe855d59e1369b22a929 /src/styleengine.cc | |
parent | 5fb38f8dd5c9b2203fe6d4323f7b10d7385e582c (diff) |
implement various apply() methods
Diffstat (limited to 'src/styleengine.cc')
-rw-r--r-- | src/styleengine.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/styleengine.cc b/src/styleengine.cc index a2ad556e..4147fb17 100644 --- a/src/styleengine.cc +++ b/src/styleengine.cc @@ -13,9 +13,11 @@ #include "styleengine.hh" StyleEngine::StyleEngine () { + stack = new lout::misc::SimpleVector <Node> (1); } StyleEngine::~StyleEngine () { + delete stack; } void |