diff options
author | David Tardon <dtardon@redhat.com> | 2016-11-13 19:08:22 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-11-13 19:08:22 +0100 |
commit | 27a165cfc97f004ecf5d911a3adc3b5ced36f7fd (patch) | |
tree | 6244eb05a99e167a141b72c2cfa25efd7609f504 /svl/source/items/style.cxx | |
parent | a21d24ca72b792c9fdd74894ebf773c72fc2b704 (diff) |
drop useless semicolons
Change-Id: I039f8ff491b42ea9c3936bf13922df8095434228
Diffstat (limited to 'svl/source/items/style.cxx')
-rw-r--r-- | svl/source/items/style.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx index aa9ea3a79002..b4e8fe5b5b25 100644 --- a/svl/source/items/style.cxx +++ b/svl/source/items/style.cxx @@ -381,7 +381,7 @@ namespace { struct DoesStyleMatchStyleSheetPredicate final : public svl::StyleSheetPredicate { explicit DoesStyleMatchStyleSheetPredicate(SfxStyleSheetIterator *it) - : mIterator(it) {;} + : mIterator(it) {} bool Check(const SfxStyleSheetBase& styleSheet) override @@ -701,7 +701,7 @@ namespace { struct AddStyleSheetCallback : svl::StyleSheetCallback { explicit AddStyleSheetCallback(SfxStyleSheetBasePool *pool) - : mPool(pool) {;} + : mPool(pool) {} void DoIt(const SfxStyleSheetBase& ssheet) override { @@ -804,7 +804,7 @@ namespace struct StyleSheetDisposerFunctor final : public svl::StyleSheetDisposer { explicit StyleSheetDisposerFunctor(SfxStyleSheetBasePool* pool) - : mPool(pool) {;} + : mPool(pool) {} void Dispose(rtl::Reference<SfxStyleSheetBase> styleSheet) override |