From e1b247625419515a8aeaf9e1f232f16cb4f59f73 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Thu, 25 May 2017 21:28:48 +0200 Subject: RTF filter: use 'using' instead of 'typedef' Change-Id: Ie7182fa30155a8090421cf9a669525be99f0e0a7 Reviewed-on: https://gerrit.libreoffice.org/38042 Reviewed-by: Miklos Vajna Tested-by: Jenkins --- sw/inc/textboxhelper.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/inc') diff --git a/sw/inc/textboxhelper.hxx b/sw/inc/textboxhelper.hxx index c2756af9a8d2..db49d276740e 100644 --- a/sw/inc/textboxhelper.hxx +++ b/sw/inc/textboxhelper.hxx @@ -45,9 +45,9 @@ class SW_DLLPUBLIC SwTextBoxHelper { public: /// Maps a draw format to a fly format. - typedef std::map SavedLink; + using SavedLink = std::map; /// Maps a draw format to content. - typedef std::map SavedContent; + using SavedContent = std::map; /// Create a TextBox for a shape. static void create(SwFrameFormat* pShape); /// Destroy a TextBox for a shape. -- cgit