summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/rtfexport.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-03 13:30:17 +0200
committerNoel Grandin <noel@peralex.com>2015-08-03 13:30:44 +0200
commit5edd744d1021b41f59528a6e3a8adebfe63e6b6e (patch)
treec94e4879df8d505ba3f670e3c5aa2640080e8f7a /sw/source/filter/ww8/rtfexport.hxx
parenta381d16d23d0efb678e9e410db3ad23313693640 (diff)
sw: inline use-once typedefs
Change-Id: Id0e54c92769e6c82690fe6f1eab488fcabe6c655
Diffstat (limited to 'sw/source/filter/ww8/rtfexport.hxx')
-rw-r--r--sw/source/filter/ww8/rtfexport.hxx6
1 files changed, 2 insertions, 4 deletions
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<sal_uInt16,Color> RtfColorTable;
-typedef std::map<sal_uInt16,OString> RtfStyleTable;
-typedef std::map<OUString,sal_uInt16> 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<sal_uInt16, OString> m_aStyTable;
+ std::map<OUString, sal_uInt16> m_aRedlineTable;
/// If set, then Strm() returns this tream, instead of m_pWriter's stream.
std::unique_ptr<SvMemoryStream> m_pStream;
};