summaryrefslogtreecommitdiff
path: root/include/oox/drawingml/shape.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-20 13:12:31 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-21 06:50:55 +0000
commitc714b43b0137ad253f51e1c65417c9874b8509e5 (patch)
treec258269d292ec4b65235357e82a70c3b6f364563 /include/oox/drawingml/shape.hxx
parent82b896f1f85b510eb72bb6d2f97d29defe1edf8b (diff)
loplugin:unusedmethods oox
Change-Id: I5381e0da0efc1f951e248cfcfb35fc680ace94e4 Reviewed-on: https://gerrit.libreoffice.org/17225 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/oox/drawingml/shape.hxx')
-rw-r--r--include/oox/drawingml/shape.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/oox/drawingml/shape.hxx b/include/oox/drawingml/shape.hxx
index 7d951887e701..ba5e89b8edff 100644
--- a/include/oox/drawingml/shape.hxx
+++ b/include/oox/drawingml/shape.hxx
@@ -118,11 +118,10 @@ public:
std::vector< ShapePtr >& getChildren() { return maChildren; }
void setName( const OUString& rName ) { msName = rName; }
- OUString getName( ) { return msName; }
+ OUString getName( ) { return msName; }
void setId( const OUString& rId ) { msId = rId; }
OUString getId() { return msId; }
void setHidden( bool bHidden ) { mbHidden = bHidden; }
- bool getHidden() const { return mbHidden; };
void setHiddenMasterShape( bool bHiddenMasterShape ) { mbHiddenMasterShape = bHiddenMasterShape; }
void setSubType( sal_Int32 nSubType ) { mnSubType = nSubType; }
sal_Int32 getSubType() const { return mnSubType; }
@@ -156,8 +155,6 @@ public:
const ::com::sun::star::awt::Rectangle* pShapeRect = 0,
ShapeIdMap* pShapeMap = 0 );
- void dropChildren() { maChildren.clear(); }
-
void addChildren(
::oox::core::XmlFilterBase& rFilterBase,
const Theme* pTheme,