summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/inc/xeescher.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/xeescher.hxx')
-rw-r--r--sc/source/filter/inc/xeescher.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sc/source/filter/inc/xeescher.hxx b/sc/source/filter/inc/xeescher.hxx
index c908675f3d2c..3a5a467419e9 100644
--- a/sc/source/filter/inc/xeescher.hxx
+++ b/sc/source/filter/inc/xeescher.hxx
@@ -79,7 +79,7 @@ private:
virtual void ImplCalcAnchorRect( const tools::Rectangle& rRect, MapUnit eMapUnit ) override;
private:
- SCTAB mnScTab; /// Calc sheet index.
+ SCTAB const mnScTab; /// Calc sheet index.
};
/** Represents the position (anchor) of a shape in an embedded draw page. */
@@ -94,9 +94,9 @@ private:
virtual void ImplCalcAnchorRect( const tools::Rectangle& rRect, MapUnit eMapUnit ) override;
private:
- Size maPageSize;
- sal_Int32 mnScaleX;
- sal_Int32 mnScaleY;
+ Size const maPageSize;
+ sal_Int32 const mnScaleX;
+ sal_Int32 const mnScaleY;
};
/** Represents the position (anchor) of a note object. */
@@ -126,7 +126,7 @@ private:
protected:
XclEscherEx& mrEscherEx; /// Reference to the DFF converter containing the DFF stream.
- sal_uInt32 mnFragmentKey; /// The key of the DFF stream fragment to be written by this record.
+ sal_uInt32 const mnFragmentKey; /// The key of the DFF stream fragment to be written by this record.
};
/** The MSODRAWINGGROUP record contains the DGGCONTAINER with global DFF data
@@ -158,8 +158,8 @@ public:
virtual void SaveXml( XclExpXmlStream& rStrm ) override;
private:
- Graphic maGraphic; /// The VCL graphic.
- sal_uInt16 mnRecId; /// Record identifier for the IMGDATA record.
+ Graphic const maGraphic; /// The VCL graphic.
+ sal_uInt16 const mnRecId; /// Record identifier for the IMGDATA record.
};
/** Helper class for form controls to manage spreadsheet links . */
@@ -238,7 +238,7 @@ private:
virtual void WriteSubRecs( XclExpStream& rStrm ) override;
private:
- OUString maClassName; /// Class name of the control.
+ OUString const maClassName; /// Class name of the control.
sal_uInt32 mnStrmStart; /// Start position in 'Ctls' stream.
sal_uInt32 mnStrmSize; /// Size in 'Ctls' stream.
};
@@ -374,7 +374,7 @@ public:
virtual void SaveXml( XclExpXmlStream& rStrm ) override;
private:
- SCTAB mnTab;
+ SCTAB const mnTab;
XclExpNoteList& mrNotes;
};
@@ -439,9 +439,9 @@ public:
virtual XclExpDffAnchorBase* CreateDffAnchor() const override;
private:
- Size maPageSize;
- sal_Int32 mnScaleX;
- sal_Int32 mnScaleY;
+ Size const maPageSize;
+ sal_Int32 const mnScaleX;
+ sal_Int32 const mnScaleY;
};
#endif