summaryrefslogtreecommitdiff
path: root/oox/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-14 16:31:47 +0200
committerNoel Grandin <noel@peralex.com>2016-01-15 09:36:41 +0200
commit802765dbe5f79748453c985da08824fb9ddefe11 (patch)
treebc2b86b325f419baa41a08020cf746523661447c /oox/inc
parent52e69bfbba7220fe4181098102876f0e83ffbee1 (diff)
loplugin:unusedmethods unused return value in oox,package
Change-Id: I63862c3ce32a1106b7de037f422e7e5480e8bfd6
Diffstat (limited to 'oox/inc')
-rw-r--r--oox/inc/drawingml/chart/converterbase.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/oox/inc/drawingml/chart/converterbase.hxx b/oox/inc/drawingml/chart/converterbase.hxx
index 9393a302e05b..df6f5ea62ee2 100644
--- a/oox/inc/drawingml/chart/converterbase.hxx
+++ b/oox/inc/drawingml/chart/converterbase.hxx
@@ -136,9 +136,8 @@ public:
Returns true, if a manual position and size could be calculated. */
bool convertFromModel( PropertySet& rPropSet );
- /** Tries to set the position from the contained OOXML layout model.
- Returns true, if a manual position could be calculated. */
- bool convertFromModel(
+ /** Tries to set the position from the contained OOXML layout model. */
+ void convertFromModel(
const css::uno::Reference< css::drawing::XShape >& rxShape,
double fRotationAngle );
bool getAutoLayout(){return mrModel.mbAutoLayout;}