summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2016-11-13 19:08:22 +0100
committerDavid Tardon <dtardon@redhat.com>2016-11-13 19:08:22 +0100
commit27a165cfc97f004ecf5d911a3adc3b5ced36f7fd (patch)
tree6244eb05a99e167a141b72c2cfa25efd7609f504 /svl
parenta21d24ca72b792c9fdd74894ebf773c72fc2b704 (diff)
drop useless semicolons
Change-Id: I039f8ff491b42ea9c3936bf13922df8095434228
Diffstat (limited to 'svl')
-rw-r--r--svl/qa/unit/items/test_IndexedStyleSheets.cxx2
-rw-r--r--svl/source/items/style.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/svl/qa/unit/items/test_IndexedStyleSheets.cxx b/svl/qa/unit/items/test_IndexedStyleSheets.cxx
index bb06e05cbfc5..f645733d6aea 100644
--- a/svl/qa/unit/items/test_IndexedStyleSheets.cxx
+++ b/svl/qa/unit/items/test_IndexedStyleSheets.cxx
@@ -25,7 +25,7 @@ class MockedStyleSheet : public SfxStyleSheetBase
public:
MockedStyleSheet(const rtl::OUString& name, SfxStyleFamily fam = SfxStyleFamily::Char)
: SfxStyleSheetBase(name, nullptr, fam, 0)
- {;}
+ {}
};
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