From a5be07d6b627a18f104e2feed063ff9020e8c610 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 18 Dec 2017 14:24:50 +0200 Subject: inline use-once typedefs Change-Id: I5c3ffc03c26b3428f1f336e6ecba7838a1cf1157 Reviewed-on: https://gerrit.libreoffice.org/46764 Tested-by: Jenkins Reviewed-by: Noel Grandin --- xmloff/inc/RDFaImportHelper.hxx | 4 +--- xmloff/source/text/txtparae.cxx | 3 +-- 2 files changed, 2 insertions(+), 5 deletions(-) (limited to 'xmloff') diff --git a/xmloff/inc/RDFaImportHelper.hxx b/xmloff/inc/RDFaImportHelper.hxx index c64e5a19cd7c..7242d3fdcc1f 100644 --- a/xmloff/inc/RDFaImportHelper.hxx +++ b/xmloff/inc/RDFaImportHelper.hxx @@ -45,9 +45,7 @@ class RDFaImportHelper private: const SvXMLImport & m_rImport; - typedef ::std::vector< RDFaEntry > RDFaEntries_t; - - RDFaEntries_t m_RDFaEntries; + ::std::vector< RDFaEntry > m_RDFaEntries; const SvXMLImport & GetImport() const { return m_rImport; } diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx index 932505961e75..e6b93e5a918f 100644 --- a/xmloff/source/text/txtparae.cxx +++ b/xmloff/source/text/txtparae.cxx @@ -139,8 +139,7 @@ namespace class TextContentSet { public: - typedef Reference text_content_ref_t; - typedef list contents_t; + typedef list> contents_t; typedef back_insert_iterator inserter_t; typedef contents_t::const_iterator const_iterator_t; -- cgit