summaryrefslogtreecommitdiff
path: root/include/oox/export
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/export')
-rw-r--r--include/oox/export/chartexport.hxx8
-rw-r--r--include/oox/export/drawingml.hxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/include/oox/export/chartexport.hxx b/include/oox/export/chartexport.hxx
index 951819703a76..c3ce9fd99a9d 100644
--- a/include/oox/export/chartexport.hxx
+++ b/include/oox/export/chartexport.hxx
@@ -79,9 +79,9 @@ enum AxesType
};
struct AxisIdPair{
- AxesType const nAxisType;
- sal_Int32 const nAxisId;
- sal_Int32 const nCrossAx;
+ AxesType nAxisType;
+ sal_Int32 nAxisId;
+ sal_Int32 nCrossAx;
AxisIdPair(AxesType nType, sal_Int32 nId, sal_Int32 nAx)
: nAxisType(nType)
@@ -97,7 +97,7 @@ public:
typedef ::std::vector< AxisIdPair > AxisVector;
private:
- sal_Int32 const mnXmlNamespace;
+ sal_Int32 mnXmlNamespace;
sal_Int32 mnSeriesCount;
css::uno::Reference< css::frame::XModel > mxChartModel;
css::uno::Reference< css::chart::XDiagram > mxDiagram;
diff --git a/include/oox/export/drawingml.hxx b/include/oox/export/drawingml.hxx
index ce5c6e9668e2..7d71f6f3e02c 100644
--- a/include/oox/export/drawingml.hxx
+++ b/include/oox/export/drawingml.hxx
@@ -139,7 +139,7 @@ private:
static std::map<OUString, OUString> maWdpCache;
/// To specify where write eg. the images to (like 'ppt', or 'word' - according to the OPC).
- DocumentType const meDocumentType;
+ DocumentType meDocumentType;
/// Parent exporter, used for text callback.
DMLTextExport* mpTextExport;