diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-20 13:12:31 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-21 06:50:55 +0000 |
commit | c714b43b0137ad253f51e1c65417c9874b8509e5 (patch) | |
tree | c258269d292ec4b65235357e82a70c3b6f364563 /include/oox/ppt | |
parent | 82b896f1f85b510eb72bb6d2f97d29defe1edf8b (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/ppt')
-rw-r--r-- | include/oox/ppt/comments.hxx | 25 | ||||
-rw-r--r-- | include/oox/ppt/pptshape.hxx | 2 | ||||
-rw-r--r-- | include/oox/ppt/slidepersist.hxx | 2 | ||||
-rw-r--r-- | include/oox/ppt/slidetransition.hxx | 2 | ||||
-rw-r--r-- | include/oox/ppt/timenode.hxx | 4 |
5 files changed, 0 insertions, 35 deletions
diff --git a/include/oox/ppt/comments.hxx b/include/oox/ppt/comments.hxx index a44b7da29bac..cf3846bc5063 100644 --- a/include/oox/ppt/comments.hxx +++ b/include/oox/ppt/comments.hxx @@ -33,11 +33,6 @@ class CommentAuthorList public: void setValues(const CommentAuthorList& list); - const std::vector<CommentAuthor>& getCmAuthorLst() const - { - return cmAuthorLst; - } - void addAuthor(const CommentAuthor& _author) { cmAuthorLst.push_back(_author); @@ -82,26 +77,6 @@ class Comment { text = _text; } - OUString getAuthorId() - { - return authorId; - } - OUString getdt() - { - return dt; - } - OUString getidx() - { - return idx; - } - OUString get_X() - { - return x; - } - OUString get_Y() - { - return y; - } OUString get_text() { return text; diff --git a/include/oox/ppt/pptshape.hxx b/include/oox/ppt/pptshape.hxx index 18126d36fbfc..30f4a13cd351 100644 --- a/include/oox/ppt/pptshape.hxx +++ b/include/oox/ppt/pptshape.hxx @@ -51,9 +51,7 @@ public: virtual void applyShapeReference( const oox::drawingml::Shape& rReferencedShape, bool bUseText = true ) SAL_OVERRIDE; - void setShapeLocation( const oox::ppt::ShapeLocation eShapeLocation ) { meShapeLocation = eShapeLocation; }; ShapeLocation getShapeLocation() const { return meShapeLocation; }; - bool isReferenced() const { return mbReferenced; }; void setReferenced( bool bReferenced ){ mbReferenced = bReferenced; }; void setPlaceholder( oox::drawingml::ShapePtr pPlaceholder ) { mpPlaceholder = pPlaceholder; } void setModelId( const OUString& rId ) { msModelId = rId; } diff --git a/include/oox/ppt/slidepersist.hxx b/include/oox/ppt/slidepersist.hxx index 91cd49bc3426..a97ede8906eb 100644 --- a/include/oox/ppt/slidepersist.hxx +++ b/include/oox/ppt/slidepersist.hxx @@ -77,14 +77,12 @@ public: void setTheme( const oox::drawingml::ThemePtr& rThemePtr ){ mpThemePtr = rThemePtr; } oox::drawingml::ThemePtr getTheme() const { return mpThemePtr; } - void setClrScheme( const oox::drawingml::ClrSchemePtr& rClrSchemePtr ){ mpClrSchemePtr = rClrSchemePtr; } oox::drawingml::ClrSchemePtr getClrScheme() const { return mpClrSchemePtr; } void setClrMap( const oox::drawingml::ClrMapPtr pClrMapPtr ){ mpClrMapPtr = pClrMapPtr; } oox::drawingml::ClrMapPtr getClrMap() const { return mpClrMapPtr; } void setBackgroundProperties( const oox::drawingml::FillPropertiesPtr& rFillPropertiesPtr ){ mpBackgroundPropertiesPtr = rFillPropertiesPtr; } - oox::drawingml::FillPropertiesPtr getBackgroundProperties() const { return mpBackgroundPropertiesPtr; } oox::drawingml::Color& getBackgroundColor() { return maBackgroundColor; } bool isMasterPage() const { return mbMaster; } diff --git a/include/oox/ppt/slidetransition.hxx b/include/oox/ppt/slidetransition.hxx index c45bd28aeb7f..9e48dde82f29 100644 --- a/include/oox/ppt/slidetransition.hxx +++ b/include/oox/ppt/slidetransition.hxx @@ -39,8 +39,6 @@ namespace oox { namespace ppt { void setTransitionFilterProperties( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XTransitionFilter > & xFilter ); void setOoxTransitionSpeed( sal_Int32 nToken ); - void setFadeColor( sal_Int32 nColor ) - { mnFadeColor = nColor; } void setMode( bool bMode ) { mbMode = bMode; } void setOoxAdvanceTime( sal_Int32 nAdvanceTime ) diff --git a/include/oox/ppt/timenode.hxx b/include/oox/ppt/timenode.hxx index 1aa5b5afddb9..9e671c85118e 100644 --- a/include/oox/ppt/timenode.hxx +++ b/include/oox/ppt/timenode.hxx @@ -51,14 +51,10 @@ namespace oox { namespace ppt { NodePropertyMap & getNodeProperties() { return maNodeProperties; } UserDataMap & getUserData() { return maUserData; } - void addChild( const TimeNodePtr & pChildPtr ) - { maChildren.push_back( pChildPtr ); } - TimeNodePtrList & getChildren() { return maChildren; } void setId( sal_Int32 nId ); - const OUString & getId() const { return msId; } void addNode( const ::oox::core::XmlFilterBase& rFilter, |