summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-07-30 15:34:20 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-07-31 12:42:50 +0200
commit714fe0fed88d01bac1a658fbb2de193a7704e24b (patch)
tree48d669b9555ff78dba0c87e9206db030e39cb499 /sd
parentcb9ce13d82839a7ce0db3bd113e70bbcc125076a (diff)
loplugin:returnconstant in svx
Change-Id: I0cc0c32afa0d735738c6744873f3518a2763821e Reviewed-on: https://gerrit.libreoffice.org/58334 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/view/sdview.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sd/source/ui/view/sdview.cxx b/sd/source/ui/view/sdview.cxx
index ca98672ef38c..4ca098bde258 100644
--- a/sd/source/ui/view/sdview.cxx
+++ b/sd/source/ui/view/sdview.cxx
@@ -599,7 +599,8 @@ void View::SelectAll()
bool View::SetStyleSheet(SfxStyleSheet* pStyleSheet, bool bDontRemoveHardAttr)
{
// forward to SdrView
- return FmFormView::SetStyleSheet(pStyleSheet, bDontRemoveHardAttr);
+ FmFormView::SetStyleSheet(pStyleSheet, bDontRemoveHardAttr);
+ return true;
}
/**