diff options
Diffstat (limited to 'lib/top_block.cpp')
-rw-r--r-- | lib/top_block.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/top_block.cpp b/lib/top_block.cpp index dd2fd5d..4892e77 100644 --- a/lib/top_block.cpp +++ b/lib/top_block.cpp @@ -31,8 +31,14 @@ void ElementImpl::top_block_cleanup(void) this->executor->commit(); } +void TopBlock::commit_config(void) +{ + HierBlock::commit_config(); +} + void TopBlock::commit(void) { + this->commit_config(); this->start(); //ok to re-start, means update } |