summaryrefslogtreecommitdiff
path: root/include/oox/vml/vmlshapecontainer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/vml/vmlshapecontainer.hxx')
-rw-r--r--include/oox/vml/vmlshapecontainer.hxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/oox/vml/vmlshapecontainer.hxx b/include/oox/vml/vmlshapecontainer.hxx
index 6b2c3c67940f..cea21146d36c 100644
--- a/include/oox/vml/vmlshapecontainer.hxx
+++ b/include/oox/vml/vmlshapecontainer.hxx
@@ -75,10 +75,6 @@ public:
@param bDeep True = searches in all group shapes too. */
const ShapeBase* getShapeById( const OUString& rShapeId, bool bDeep ) const;
- /** Searches for a shape type by using the passed functor that takes a
- constant reference of a ShapeType object. */
- template< typename Functor >
- const ShapeType* findShapeType( const Functor& rFunctor ) const;
/** Searches for a shape by using the passed functor that takes a constant
reference of a ShapeBase object. */
template< typename Functor >
@@ -132,12 +128,6 @@ ShapeT& ShapeContainer::createShape()
}
template< typename Functor >
-const ShapeType* ShapeContainer::findShapeType( const Functor& rFunctor ) const
-{
- return maTypes.findIf( rFunctor ).get();
-}
-
-template< typename Functor >
const ShapeBase* ShapeContainer::findShape( const Functor& rFunctor ) const
{
return maShapes.findIf( rFunctor ).get();