summaryrefslogtreecommitdiff
path: root/include/oox/ppt
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/ppt')
-rw-r--r--include/oox/ppt/pptfilterhelpers.hxx10
-rw-r--r--include/oox/ppt/pptshapegroupcontext.hxx4
-rw-r--r--include/oox/ppt/slidefragmenthandler.hxx2
-rw-r--r--include/oox/ppt/slidemastertextstylescontext.hxx2
-rw-r--r--include/oox/ppt/slidepersist.hxx16
-rw-r--r--include/oox/ppt/timenodelistcontext.hxx2
6 files changed, 18 insertions, 18 deletions
diff --git a/include/oox/ppt/pptfilterhelpers.hxx b/include/oox/ppt/pptfilterhelpers.hxx
index 9fdd943d87b5..0d13043cc718 100644
--- a/include/oox/ppt/pptfilterhelpers.hxx
+++ b/include/oox/ppt/pptfilterhelpers.hxx
@@ -43,7 +43,7 @@ namespace oox { namespace ppt {
struct ImplAttributeNameConversion
{
- AnimationAttributeEnum meAttribute;
+ AnimationAttributeEnum const meAttribute;
const char* mpMSName;
const char* mpAPIName;
};
@@ -53,9 +53,9 @@ namespace oox { namespace ppt {
struct OOX_DLLPUBLIC transition
{
const sal_Char* mpName;
- sal_Int16 mnType;
- sal_Int16 mnSubType;
- bool mbDirection; // true: default geometric direction
+ sal_Int16 const mnType;
+ sal_Int16 const mnSubType;
+ bool const mbDirection; // true: default geometric direction
static const transition* getList();
static const transition* find( const OUString& rName );
@@ -63,7 +63,7 @@ namespace oox { namespace ppt {
struct OOX_DLLPUBLIC convert_subtype
{
- sal_Int32 mnID;
+ sal_Int32 const mnID;
const sal_Char* mpStrSubType;
static const convert_subtype* getList();
diff --git a/include/oox/ppt/pptshapegroupcontext.hxx b/include/oox/ppt/pptshapegroupcontext.hxx
index de497635d34d..1043b3fa8177 100644
--- a/include/oox/ppt/pptshapegroupcontext.hxx
+++ b/include/oox/ppt/pptshapegroupcontext.hxx
@@ -36,8 +36,8 @@ namespace oox { namespace ppt {
class PPTShapeGroupContext : public ::oox::drawingml::ShapeGroupContext
{
- SlidePersistPtr mpSlidePersistPtr;
- ShapeLocation meShapeLocation;
+ SlidePersistPtr const mpSlidePersistPtr;
+ ShapeLocation const meShapeLocation;
oox::drawingml::ShapePtr pGraphicShape;
void applyFontRefColor(const oox::drawingml::ShapePtr& pShape, const oox::drawingml::Color& rFontRefColor);
diff --git a/include/oox/ppt/slidefragmenthandler.hxx b/include/oox/ppt/slidefragmenthandler.hxx
index 545a55bd1a56..8e5791564e77 100644
--- a/include/oox/ppt/slidefragmenthandler.hxx
+++ b/include/oox/ppt/slidefragmenthandler.hxx
@@ -48,7 +48,7 @@ public:
protected:
SlidePersistPtr mpSlidePersistPtr;
- ShapeLocation meShapeLocation;
+ ShapeLocation const meShapeLocation;
private:
OUString maSlideName;
diff --git a/include/oox/ppt/slidemastertextstylescontext.hxx b/include/oox/ppt/slidemastertextstylescontext.hxx
index 7acab9888158..9f4c3cac39d9 100644
--- a/include/oox/ppt/slidemastertextstylescontext.hxx
+++ b/include/oox/ppt/slidemastertextstylescontext.hxx
@@ -37,7 +37,7 @@ public:
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
private:
- SlidePersistPtr mpSlidePersistPtr;
+ SlidePersistPtr const mpSlidePersistPtr;
};
} }
diff --git a/include/oox/ppt/slidepersist.hxx b/include/oox/ppt/slidepersist.hxx
index a2378b82aefb..9355b7881788 100644
--- a/include/oox/ppt/slidepersist.hxx
+++ b/include/oox/ppt/slidepersist.hxx
@@ -139,14 +139,14 @@ private:
oox::ppt::HeaderFooter maHeaderFooter;
sal_Int32 mnLayoutValueToken;
- bool mbMaster;
- bool mbNotes;
-
- oox::drawingml::TextListStylePtr maDefaultTextStylePtr;
- oox::drawingml::TextListStylePtr maTitleTextStylePtr;
- oox::drawingml::TextListStylePtr maBodyTextStylePtr;
- oox::drawingml::TextListStylePtr maNotesTextStylePtr;
- oox::drawingml::TextListStylePtr maOtherTextStylePtr;
+ bool const mbMaster;
+ bool const mbNotes;
+
+ oox::drawingml::TextListStylePtr const maDefaultTextStylePtr;
+ oox::drawingml::TextListStylePtr const maTitleTextStylePtr;
+ oox::drawingml::TextListStylePtr const maBodyTextStylePtr;
+ oox::drawingml::TextListStylePtr const maNotesTextStylePtr;
+ oox::drawingml::TextListStylePtr const maOtherTextStylePtr;
std::map< OUString, css::uno::Reference< css::animations::XAnimationNode > > maAnimNodesMap;
std::map< OUString, ::oox::drawingml::ShapePtr > maShapeMap;
diff --git a/include/oox/ppt/timenodelistcontext.hxx b/include/oox/ppt/timenodelistcontext.hxx
index 02cba2936fe7..00815a40a668 100644
--- a/include/oox/ppt/timenodelistcontext.hxx
+++ b/include/oox/ppt/timenodelistcontext.hxx
@@ -45,7 +45,7 @@ namespace oox { namespace ppt {
protected:
TimeNodeContext( ::oox::core::FragmentHandler2 const & rParent, sal_Int32 aElement, const TimeNodePtr & pNode ) throw();
- sal_Int32 mnElement;
+ sal_Int32 const mnElement;
TimeNodePtr mpNode;
};