diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-19 14:40:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-30 07:20:51 +0100 |
commit | 20e5f64215853bdd32c5f16394ba7f2f36745904 (patch) | |
tree | dab302d397def2f9a04cf9f3f9e170b0ef2c84b9 /sw/inc/IDocumentContentOperations.hxx | |
parent | 036b51dbc49b533d1db773d8627d56ab86bca487 (diff) |
loplugin:unused-returns in sw
Change-Id: I753fcdd35d461880a8d8160213cabd465cfde967
Reviewed-on: https://gerrit.libreoffice.org/48189
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/inc/IDocumentContentOperations.hxx')
-rw-r--r-- | sw/inc/IDocumentContentOperations.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/IDocumentContentOperations.hxx b/sw/inc/IDocumentContentOperations.hxx index 9f4674ff2953..5ba9b1a6d3fc 100644 --- a/sw/inc/IDocumentContentOperations.hxx +++ b/sw/inc/IDocumentContentOperations.hxx @@ -115,7 +115,7 @@ public: /** Delete a range SwFlyFrameFormat. */ - virtual bool DeleteRange(SwPaM&) = 0; + virtual void DeleteRange(SwPaM&) = 0; /** Delete full paragraphs. */ @@ -214,7 +214,7 @@ public: virtual bool InsertPoolItem(const SwPaM &rRg, const SfxPoolItem&, const SetAttrMode nFlags = SetAttrMode::DEFAULT, bool bExpandCharToPara=false) = 0; - virtual bool InsertItemSet (const SwPaM &rRg, const SfxItemSet&, + virtual void InsertItemSet (const SwPaM &rRg, const SfxItemSet&, const SetAttrMode nFlags = SetAttrMode::DEFAULT) = 0; /** Removes any leading white space from the paragraph |