summaryrefslogtreecommitdiff
path: root/include/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 /include/svl
parenta21d24ca72b792c9fdd74894ebf773c72fc2b704 (diff)
drop useless semicolons
Change-Id: I039f8ff491b42ea9c3936bf13922df8095434228
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/IndexedStyleSheets.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/IndexedStyleSheets.hxx b/include/svl/IndexedStyleSheets.hxx
index 790a07821b79..2513f9aaa6d3 100644
--- a/include/svl/IndexedStyleSheets.hxx
+++ b/include/svl/IndexedStyleSheets.hxx
@@ -30,7 +30,7 @@ namespace svl {
*/
struct StyleSheetPredicate {
virtual bool Check(const SfxStyleSheetBase& styleSheet) = 0;
- virtual ~StyleSheetPredicate() {;}
+ virtual ~StyleSheetPredicate() {}
};
/** Function object for cleanup-Strategy for IndexedSfxStyleSheets::Clear().
@@ -38,7 +38,7 @@ struct StyleSheetPredicate {
*/
struct StyleSheetDisposer {
virtual void Dispose(rtl::Reference<SfxStyleSheetBase> styleSheet) = 0;
- virtual ~StyleSheetDisposer() {;}
+ virtual ~StyleSheetDisposer() {}
};
/** Function object to apply a method on all style sheets.
@@ -46,7 +46,7 @@ struct StyleSheetDisposer {
*/
struct StyleSheetCallback {
virtual void DoIt(const SfxStyleSheetBase& styleSheet) = 0;
- virtual ~StyleSheetCallback() {;}
+ virtual ~StyleSheetCallback() {}
};
/** This class holds SfxStyleSheets and allows for access via an id and a name.