summaryrefslogtreecommitdiff
path: root/writerfilter/inc
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter/inc')
-rw-r--r--writerfilter/inc/dmapper/GraphicZOrderHelper.hxx2
-rw-r--r--writerfilter/inc/rtftok/RTFDocument.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/inc/dmapper/GraphicZOrderHelper.hxx b/writerfilter/inc/dmapper/GraphicZOrderHelper.hxx
index 60c6b493fe85..d73f7cc532b1 100644
--- a/writerfilter/inc/dmapper/GraphicZOrderHelper.hxx
+++ b/writerfilter/inc/dmapper/GraphicZOrderHelper.hxx
@@ -22,7 +22,7 @@ public:
void addItem(css::uno::Reference<css::beans::XPropertySet> const& props, sal_Int32 relativeHeight);
sal_Int32 findZOrder(sal_Int32 relativeHeight, bool bOldStyle = false);
private:
- typedef std::map< sal_Int32, css::uno::Reference<css::beans::XPropertySet> > Items;
+ using Items = std::map< sal_Int32, css::uno::Reference<css::beans::XPropertySet> >;
Items items;
};
diff --git a/writerfilter/inc/rtftok/RTFDocument.hxx b/writerfilter/inc/rtftok/RTFDocument.hxx
index c3f65b7d5be4..086b39a8ce5a 100644
--- a/writerfilter/inc/rtftok/RTFDocument.hxx
+++ b/writerfilter/inc/rtftok/RTFDocument.hxx
@@ -27,7 +27,7 @@ class RTFDocument
{
public:
/// Pointer to this stream.
- typedef std::shared_ptr<RTFDocument> Pointer_t;
+ using Pointer_t = std::shared_ptr<RTFDocument>;
virtual ~RTFDocument() { }