From 5edd744d1021b41f59528a6e3a8adebfe63e6b6e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 3 Aug 2015 13:30:17 +0200 Subject: sw: inline use-once typedefs Change-Id: Id0e54c92769e6c82690fe6f1eab488fcabe6c655 --- sw/source/filter/ww8/rtfexport.hxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'sw/source/filter/ww8/rtfexport.hxx') diff --git a/sw/source/filter/ww8/rtfexport.hxx b/sw/source/filter/ww8/rtfexport.hxx index 752179ae99fb..2103b6556935 100644 --- a/sw/source/filter/ww8/rtfexport.hxx +++ b/sw/source/filter/ww8/rtfexport.hxx @@ -27,8 +27,6 @@ class RtfAttributeOutput; class RtfExportFilter; class RtfSdrExport; typedef std::map RtfColorTable; -typedef std::map RtfStyleTable; -typedef std::map RtfRedlineTable; class SwNode; class SwTextNode; class SwGrfNode; @@ -208,8 +206,8 @@ private: void WriteHeaderFooter(const SwFrameFormat& rFormat, bool bHeader, const sal_Char* pStr, bool bTitlepg = false); RtfColorTable m_aColTable; - RtfStyleTable m_aStyTable; - RtfRedlineTable m_aRedlineTable; + std::map m_aStyTable; + std::map m_aRedlineTable; /// If set, then Strm() returns this tream, instead of m_pWriter's stream. std::unique_ptr m_pStream; }; -- cgit