summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xeescher.hxx
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 /sc/source/filter/inc/xeescher.hxx
parentc36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (diff)
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 'sc/source/filter/inc/xeescher.hxx')
-rw-r--r--sc/source/filter/inc/xeescher.hxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/sc/source/filter/inc/xeescher.hxx b/sc/source/filter/inc/xeescher.hxx
index 660d5f38ceb0..a51e5306341c 100644
--- a/sc/source/filter/inc/xeescher.hxx
+++ b/sc/source/filter/inc/xeescher.hxx
@@ -54,7 +54,7 @@ public:
/** Called from SVX DFF converter.
@param rRect The object anchor rectangle to be exported (in twips). */
- virtual void WriteData( EscherEx& rEscherEx, const Rectangle& rRect );
+ virtual void WriteData( EscherEx& rEscherEx, const Rectangle& rRect ) SAL_OVERRIDE;
private:
virtual void ImplSetFlags( const SdrObject& rSdrObj );
@@ -74,8 +74,8 @@ public:
explicit XclExpDffSheetAnchor( const XclExpRoot& rRoot );
private:
- virtual void ImplSetFlags( const SdrObject& rSdrObj );
- virtual void ImplCalcAnchorRect( const Rectangle& rRect, MapUnit eMapUnit );
+ virtual void ImplSetFlags( const SdrObject& rSdrObj ) SAL_OVERRIDE;
+ virtual void ImplCalcAnchorRect( const Rectangle& rRect, MapUnit eMapUnit ) SAL_OVERRIDE;
private:
SCTAB mnScTab; /// Calc sheet index.
@@ -91,8 +91,8 @@ public:
const Size& rPageSize, sal_Int32 nScaleX, sal_Int32 nScaleY );
private:
- virtual void ImplSetFlags( const SdrObject& rSdrObj );
- virtual void ImplCalcAnchorRect( const Rectangle& rRect, MapUnit eMapUnit );
+ virtual void ImplSetFlags( const SdrObject& rSdrObj ) SAL_OVERRIDE;
+ virtual void ImplCalcAnchorRect( const Rectangle& rRect, MapUnit eMapUnit ) SAL_OVERRIDE;
private:
Size maPageSize;
@@ -127,7 +127,7 @@ public:
explicit XclExpMsoDrawingBase( XclEscherEx& rEscherEx, sal_uInt16 nRecId );
private:
- virtual void WriteBody( XclExpStream& rStrm );
+ virtual void WriteBody( XclExpStream& rStrm ) SAL_OVERRIDE;
protected:
XclEscherEx& mrEscherEx; /// Reference to the DFF converter containing the DFF stream.
@@ -165,8 +165,8 @@ public:
explicit XclExpImgData( const Graphic& rGraphic, sal_uInt16 nRecId );
/** Writes the BITMAP record. */
- virtual void Save( XclExpStream& rStrm );
- virtual void SaveXml( XclExpXmlStream& rStrm );
+ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE;
+ virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE;
private:
Graphic maGraphic; /// The VCL graphic.
@@ -231,7 +231,7 @@ public:
explicit XclExpShapeObj( XclExpObjectManager& rRoot, ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > xShape );
virtual ~XclExpShapeObj();
private:
- virtual void WriteSubRecs( XclExpStream& rStrm );
+ virtual void WriteSubRecs( XclExpStream& rStrm ) SAL_OVERRIDE;
};
@@ -251,7 +251,7 @@ public:
sal_uInt32 nStrmStart, sal_uInt32 nStrmSize );
private:
- virtual void WriteSubRecs( XclExpStream& rStrm );
+ virtual void WriteSubRecs( XclExpStream& rStrm ) SAL_OVERRIDE;
private:
OUString maClassName; /// Class name of the control.
@@ -275,7 +275,7 @@ public:
bool SetMacroLink( const ::com::sun::star::script::ScriptEventDescriptor& rEvent );
private:
- virtual void WriteSubRecs( XclExpStream& rStrm );
+ virtual void WriteSubRecs( XclExpStream& rStrm ) SAL_OVERRIDE;
/** Writes a subrecord containing a cell link, or nothing, if no link present. */
void WriteCellLinkSubRec( XclExpStream& rStrm, sal_uInt16 nSubRecId );
@@ -319,8 +319,8 @@ public:
virtual ~XclExpChartObj();
/** Writes the OBJ record and the entire chart substream. */
- virtual void Save( XclExpStream& rStrm );
- virtual void SaveXml( XclExpXmlStream& rStrm );
+ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE;
+ virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE;
virtual void WriteChartObj( sax_fastparser::FSHelperPtr pDrawing, XclExpXmlStream& rStrm );
void WriteShapeTransformation( sax_fastparser::FSHelperPtr pFS, const XShapeRef& rXShape, bool bFlipH = false, bool bFlipV = false, sal_Int32 nRotation = 0 );
@@ -358,14 +358,14 @@ public:
const OUString& rAddText );
/** Writes the NOTE record, if the respective Escher object is present. */
- virtual void Save( XclExpStream& rStrm );
+ virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE;
void WriteXml( sal_Int32 nAuthorId, XclExpXmlStream& rStrm );
const XclExpString& GetAuthor() const { return maAuthor; }
private:
/** Writes the body of the NOTE record. */
- virtual void WriteBody( XclExpStream& rStrm );
+ virtual void WriteBody( XclExpStream& rStrm ) SAL_OVERRIDE;
private:
XclExpString maAuthor; /// Name of the author.
@@ -397,7 +397,7 @@ public:
XclExpComments( SCTAB nTab, XclExpNoteList& rNotes );
- virtual void SaveXml( XclExpXmlStream& rStrm );
+ virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE;
private:
SCTAB mnTab;
@@ -464,7 +464,7 @@ public:
/** Creates a new DFF client anchor object for embedded objects according
to the scaling data passed to the constructor. Caller takes ownership! */
- virtual XclExpDffAnchorBase* CreateDffAnchor() const;
+ virtual XclExpDffAnchorBase* CreateDffAnchor() const SAL_OVERRIDE;
private:
Size maPageSize;