summaryrefslogtreecommitdiffstats
path: root/include/oox/ppt
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
commit567ef6d5782cdb729b49005caf6005610ce03e22 (patch)
tree7e3be1da41382e555d9091914ef7e064852a4fd4 /include/oox/ppt
parentIntroduce INetContentType::scan (diff)
downloadcore-567ef6d5782cdb729b49005caf6005610ce03e22.tar.gz
core-567ef6d5782cdb729b49005caf6005610ce03e22.zip
Second batch of adding SAL_OVERRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
Diffstat (limited to 'include/oox/ppt')
-rw-r--r--include/oox/ppt/backgroundproperties.hxx2
-rw-r--r--include/oox/ppt/customshowlistcontext.hxx2
-rw-r--r--include/oox/ppt/dgmimport.hxx16
-rw-r--r--include/oox/ppt/dgmlayout.hxx16
-rw-r--r--include/oox/ppt/layoutfragmenthandler.hxx2
-rw-r--r--include/oox/ppt/pptimport.hxx20
-rw-r--r--include/oox/ppt/pptshape.hxx2
-rw-r--r--include/oox/ppt/presentationfragmenthandler.hxx4
-rw-r--r--include/oox/ppt/slidefragmenthandler.hxx6
-rw-r--r--include/oox/ppt/slidemastertextstylescontext.hxx2
-rw-r--r--include/oox/ppt/slidetimingcontext.hxx2
-rw-r--r--include/oox/ppt/slidetransitioncontext.hxx4
-rw-r--r--include/oox/ppt/soundactioncontext.hxx4
-rw-r--r--include/oox/ppt/timenodelistcontext.hxx2
14 files changed, 42 insertions, 42 deletions
diff --git a/include/oox/ppt/backgroundproperties.hxx b/include/oox/ppt/backgroundproperties.hxx
index 7f5da0c39730..57202805ad2b 100644
--- a/include/oox/ppt/backgroundproperties.hxx
+++ b/include/oox/ppt/backgroundproperties.hxx
@@ -31,7 +31,7 @@ class BackgroundPropertiesContext : public ::oox::core::FragmentHandler2
{
public:
BackgroundPropertiesContext( ::oox::core::FragmentHandler2& rParent, ::oox::drawingml::FillProperties& rFillProperties );
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs );
+ virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) SAL_OVERRIDE;
protected:
::oox::drawingml::FillProperties& mrFillProperties;
diff --git a/include/oox/ppt/customshowlistcontext.hxx b/include/oox/ppt/customshowlistcontext.hxx
index d32d331c6052..20e2971f8f44 100644
--- a/include/oox/ppt/customshowlistcontext.hxx
+++ b/include/oox/ppt/customshowlistcontext.hxx
@@ -43,7 +43,7 @@ namespace oox { namespace ppt {
std::vector< CustomShow >& rCustomShowList );
~CustomShowListContext( );
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs );
+ virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) SAL_OVERRIDE;
};
} }
diff --git a/include/oox/ppt/dgmimport.hxx b/include/oox/ppt/dgmimport.hxx
index 730a0e839042..993e79b62be1 100644
--- a/include/oox/ppt/dgmimport.hxx
+++ b/include/oox/ppt/dgmimport.hxx
@@ -40,19 +40,19 @@ public:
QuickDiagrammingImport( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext );
// from FilterBase
- virtual bool importDocument() throw();
- virtual bool exportDocument() throw();
+ virtual bool importDocument() throw() SAL_OVERRIDE;
+ virtual bool exportDocument() throw() SAL_OVERRIDE;
- virtual const ::oox::drawingml::Theme* getCurrentTheme() const;
+ virtual const ::oox::drawingml::Theme* getCurrentTheme() const SAL_OVERRIDE;
virtual sal_Int32 getSchemeClr( sal_Int32 nColorSchemeToken ) const;
- virtual const oox::drawingml::table::TableStyleListPtr getTableStyles();
+ virtual const oox::drawingml::table::TableStyleListPtr getTableStyles() SAL_OVERRIDE;
- virtual oox::vml::Drawing* getVmlDrawing();
- virtual oox::drawingml::chart::ChartConverter* getChartConverter();
+ virtual oox::vml::Drawing* getVmlDrawing() SAL_OVERRIDE;
+ virtual oox::drawingml::chart::ChartConverter* getChartConverter() SAL_OVERRIDE;
private:
- virtual OUString implGetImplementationName() const;
- virtual ::oox::ole::VbaProject* implCreateVbaProject() const;
+ virtual OUString implGetImplementationName() const SAL_OVERRIDE;
+ virtual ::oox::ole::VbaProject* implCreateVbaProject() const SAL_OVERRIDE;
};
} }
diff --git a/include/oox/ppt/dgmlayout.hxx b/include/oox/ppt/dgmlayout.hxx
index 64131975bfd2..2b5d97d3c657 100644
--- a/include/oox/ppt/dgmlayout.hxx
+++ b/include/oox/ppt/dgmlayout.hxx
@@ -40,19 +40,19 @@ public:
QuickDiagrammingLayout( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext );
// from FilterBase
- virtual bool importDocument() throw();
- virtual bool exportDocument() throw();
+ virtual bool importDocument() throw() SAL_OVERRIDE;
+ virtual bool exportDocument() throw() SAL_OVERRIDE;
- virtual const ::oox::drawingml::Theme* getCurrentTheme() const;
+ virtual const ::oox::drawingml::Theme* getCurrentTheme() const SAL_OVERRIDE;
virtual sal_Int32 getSchemeClr( sal_Int32 nColorSchemeToken ) const;
- virtual const oox::drawingml::table::TableStyleListPtr getTableStyles();
+ virtual const oox::drawingml::table::TableStyleListPtr getTableStyles() SAL_OVERRIDE;
- virtual ::oox::vml::Drawing* getVmlDrawing();
- virtual ::oox::drawingml::chart::ChartConverter* getChartConverter();
+ virtual ::oox::vml::Drawing* getVmlDrawing() SAL_OVERRIDE;
+ virtual ::oox::drawingml::chart::ChartConverter* getChartConverter() SAL_OVERRIDE;
private:
- virtual OUString implGetImplementationName() const;
- virtual ::oox::ole::VbaProject* implCreateVbaProject() const;
+ virtual OUString implGetImplementationName() const SAL_OVERRIDE;
+ virtual ::oox::ole::VbaProject* implCreateVbaProject() const SAL_OVERRIDE;
drawingml::ThemePtr mpThemePtr;
};
diff --git a/include/oox/ppt/layoutfragmenthandler.hxx b/include/oox/ppt/layoutfragmenthandler.hxx
index 739ba253d5b2..09350710f043 100644
--- a/include/oox/ppt/layoutfragmenthandler.hxx
+++ b/include/oox/ppt/layoutfragmenthandler.hxx
@@ -32,7 +32,7 @@ public:
LayoutFragmentHandler( ::oox::core::XmlFilterBase& rFilter, const OUString& rFragmentPath, SlidePersistPtr pMasterPersistPtr ) throw();
virtual ~LayoutFragmentHandler() throw();
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs );
+ virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) SAL_OVERRIDE;
};
} }
diff --git a/include/oox/ppt/pptimport.hxx b/include/oox/ppt/pptimport.hxx
index 308a7fb60e9b..c393be6411a9 100644
--- a/include/oox/ppt/pptimport.hxx
+++ b/include/oox/ppt/pptimport.hxx
@@ -42,13 +42,13 @@ public:
virtual ~PowerPointImport();
// from FilterBase
- virtual bool importDocument() throw();
- virtual bool exportDocument() throw();
+ virtual bool importDocument() throw() SAL_OVERRIDE;
+ virtual bool exportDocument() throw() SAL_OVERRIDE;
- virtual const ::oox::drawingml::Theme* getCurrentTheme() const;
- virtual ::oox::vml::Drawing* getVmlDrawing();
- virtual const oox::drawingml::table::TableStyleListPtr getTableStyles();
- virtual ::oox::drawingml::chart::ChartConverter* getChartConverter();
+ virtual const ::oox::drawingml::Theme* getCurrentTheme() const SAL_OVERRIDE;
+ virtual ::oox::vml::Drawing* getVmlDrawing() SAL_OVERRIDE;
+ virtual const oox::drawingml::table::TableStyleListPtr getTableStyles() SAL_OVERRIDE;
+ virtual ::oox::drawingml::chart::ChartConverter* getChartConverter() SAL_OVERRIDE;
void setActualSlidePersist( SlidePersistPtr pActualSlidePersist ){ mpActualSlidePersist = pActualSlidePersist; };
std::map< OUString, oox::drawingml::ThemePtr >& getThemes(){ return maThemes; };
@@ -57,7 +57,7 @@ public:
std::vector< SlidePersistPtr >& getNotesPages(){ return maNotesPages; };
virtual sal_Bool SAL_CALL filter( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rDescriptor )
- throw( ::com::sun::star::uno::RuntimeException, std::exception );
+ throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
sal_Int32 getSchemeColor( sal_Int32 nToken ) const;
@@ -66,9 +66,9 @@ public:
#endif
private:
- virtual GraphicHelper* implCreateGraphicHelper() const;
- virtual ::oox::ole::VbaProject* implCreateVbaProject() const;
- virtual OUString implGetImplementationName() const;
+ virtual GraphicHelper* implCreateGraphicHelper() const SAL_OVERRIDE;
+ virtual ::oox::ole::VbaProject* implCreateVbaProject() const SAL_OVERRIDE;
+ virtual OUString implGetImplementationName() const SAL_OVERRIDE;
private:
OUString maTableStyleListPath;
diff --git a/include/oox/ppt/pptshape.hxx b/include/oox/ppt/pptshape.hxx
index ffe6ae1b2530..f9c1136ed5ff 100644
--- a/include/oox/ppt/pptshape.hxx
+++ b/include/oox/ppt/pptshape.hxx
@@ -49,7 +49,7 @@ public:
const com::sun::star::awt::Rectangle* pShapeRect = 0,
::oox::drawingml::ShapeIdMap* pShapeMap = 0 );
- virtual void applyShapeReference( const oox::drawingml::Shape& rReferencedShape, bool bUseText = true );
+ 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; };
diff --git a/include/oox/ppt/presentationfragmenthandler.hxx b/include/oox/ppt/presentationfragmenthandler.hxx
index a0b51ef0de1b..362b90e09a9c 100644
--- a/include/oox/ppt/presentationfragmenthandler.hxx
+++ b/include/oox/ppt/presentationfragmenthandler.hxx
@@ -40,8 +40,8 @@ class PresentationFragmentHandler : public ::oox::core::FragmentHandler2
public:
PresentationFragmentHandler( ::oox::core::XmlFilterBase& rFilter, const OUString& rFragmentPath ) throw();
virtual ~PresentationFragmentHandler() throw();
- virtual void finalizeImport();
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs );
+ virtual void finalizeImport() SAL_OVERRIDE;
+ virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) SAL_OVERRIDE;
protected:
bool importSlide( const ::oox::core::FragmentHandlerRef& rxSlideFragmentHandler,
diff --git a/include/oox/ppt/slidefragmenthandler.hxx b/include/oox/ppt/slidefragmenthandler.hxx
index 7fde32356fb3..ed03b1d7934b 100644
--- a/include/oox/ppt/slidefragmenthandler.hxx
+++ b/include/oox/ppt/slidefragmenthandler.hxx
@@ -37,9 +37,9 @@ public:
SlideFragmentHandler( ::oox::core::XmlFilterBase& rFilter, const OUString& rFragmentPath, SlidePersistPtr pPersistPtr, const ShapeLocation eShapeLocation ) throw();
virtual ~SlideFragmentHandler() throw();
- virtual void finalizeImport();
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs );
- virtual void onCharacters( const OUString& rChars );
+ virtual void finalizeImport() SAL_OVERRIDE;
+ virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) SAL_OVERRIDE;
+ virtual void onCharacters( const OUString& rChars ) SAL_OVERRIDE;
const ::std::vector< OUString>& getCharVector() { return maCharVector; }
diff --git a/include/oox/ppt/slidemastertextstylescontext.hxx b/include/oox/ppt/slidemastertextstylescontext.hxx
index fecdfba17ce5..bc7ca2d8ed73 100644
--- a/include/oox/ppt/slidemastertextstylescontext.hxx
+++ b/include/oox/ppt/slidemastertextstylescontext.hxx
@@ -32,7 +32,7 @@ class SlideMasterTextStylesContext : public oox::core::FragmentHandler2
public:
SlideMasterTextStylesContext( ::oox::core::FragmentHandler2& rParent, SlidePersistPtr pSlidePersistPtr );
~SlideMasterTextStylesContext();
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs );
+ virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) SAL_OVERRIDE;
protected:
SlidePersistPtr mpSlidePersistPtr;
diff --git a/include/oox/ppt/slidetimingcontext.hxx b/include/oox/ppt/slidetimingcontext.hxx
index fd6724d89857..d3b294f85d42 100644
--- a/include/oox/ppt/slidetimingcontext.hxx
+++ b/include/oox/ppt/slidetimingcontext.hxx
@@ -35,7 +35,7 @@ public:
SlideTimingContext( ::oox::core::FragmentHandler2& rParent, TimeNodePtrList & aTimeNodeList ) throw();
virtual ~SlideTimingContext() throw();
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs );
+ virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) SAL_OVERRIDE;
private:
TimeNodePtrList & maTimeNodeList;
diff --git a/include/oox/ppt/slidetransitioncontext.hxx b/include/oox/ppt/slidetransitioncontext.hxx
index e52068373c7f..9c5d840ab050 100644
--- a/include/oox/ppt/slidetransitioncontext.hxx
+++ b/include/oox/ppt/slidetransitioncontext.hxx
@@ -35,8 +35,8 @@ namespace oox { namespace ppt {
PropertyMap & aProperties ) throw();
virtual ~SlideTransitionContext() throw();
- virtual void onEndElement();
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs );
+ virtual void onEndElement() SAL_OVERRIDE;
+ virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) SAL_OVERRIDE;
private:
diff --git a/include/oox/ppt/soundactioncontext.hxx b/include/oox/ppt/soundactioncontext.hxx
index a823ffc5b000..ca2e70fd7e38 100644
--- a/include/oox/ppt/soundactioncontext.hxx
+++ b/include/oox/ppt/soundactioncontext.hxx
@@ -33,8 +33,8 @@ public:
SoundActionContext( ::oox::core::FragmentHandler2& rParent, PropertyMap & aProperties ) throw();
virtual ~SoundActionContext() throw();
- virtual void onEndElement();
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs );
+ virtual void onEndElement() SAL_OVERRIDE;
+ virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) SAL_OVERRIDE;
private:
PropertyMap& maSlideProperties;
diff --git a/include/oox/ppt/timenodelistcontext.hxx b/include/oox/ppt/timenodelistcontext.hxx
index 786b333664b2..b958f15f3a07 100644
--- a/include/oox/ppt/timenodelistcontext.hxx
+++ b/include/oox/ppt/timenodelistcontext.hxx
@@ -51,7 +51,7 @@ public:
TimeNodeListContext( ::oox::core::FragmentHandler2& rParent, TimeNodePtrList & aList ) throw();
virtual ~TimeNodeListContext() throw();
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs );
+ virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) SAL_OVERRIDE;
private: