summaryrefslogtreecommitdiff
path: root/oox/source
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source')
-rw-r--r--oox/source/export/DMLPresetShapeExport.cxx8
-rw-r--r--oox/source/shape/ShapeContextHandler.cxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/oox/source/export/DMLPresetShapeExport.cxx b/oox/source/export/DMLPresetShapeExport.cxx
index b3c405f2f31e..318ce11207d9 100644
--- a/oox/source/export/DMLPresetShapeExport.cxx
+++ b/oox/source/export/DMLPresetShapeExport.cxx
@@ -93,18 +93,18 @@ DMLPresetShapeExporter::~DMLPresetShapeExporter(){
// Do nothing
};
-bool DMLPresetShapeExporter::HasHandleValue() { return m_bHasHandleValues; }
+bool DMLPresetShapeExporter::HasHandleValue() const { return m_bHasHandleValues; }
-const OUString& DMLPresetShapeExporter::GetShapeType() { return m_sPresetShapeType; }
+const OUString& DMLPresetShapeExporter::GetShapeType() const { return m_sPresetShapeType; }
const css::uno::Sequence<css::uno::Sequence<css::beans::PropertyValue>>&
-DMLPresetShapeExporter::GetHandleValues()
+DMLPresetShapeExporter::GetHandleValues() const
{
return m_HandleValues;
};
const css::uno::Sequence<css::drawing::EnhancedCustomShapeAdjustmentValue>&
-DMLPresetShapeExporter::GetAdjustmentValues()
+DMLPresetShapeExporter::GetAdjustmentValues() const
{
return m_AdjustmentValues;
};
diff --git a/oox/source/shape/ShapeContextHandler.cxx b/oox/source/shape/ShapeContextHandler.cxx
index 066d49d00f60..5404cc82fe81 100644
--- a/oox/source/shape/ShapeContextHandler.cxx
+++ b/oox/source/shape/ShapeContextHandler.cxx
@@ -531,7 +531,7 @@ void ShapeContextHandler::setRelationFragmentPath(const OUString & the_value)
msRelationFragmentPath = the_value;
}
-sal_Int32 ShapeContextHandler::getStartToken()
+sal_Int32 ShapeContextHandler::getStartToken() const
{
return mnStartToken;
}