diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-18 10:12:08 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-18 10:38:08 +0000 |
commit | 53f16c39f5c4c69ab603bf9098daec71f7a0acb8 (patch) | |
tree | 00b3166ecff36bb55dcf0b8c2122a08b72656ab5 /xmloff | |
parent | 4c1f958634ae88614a794bf232c67e9e785bf703 (diff) |
remove unused typedefs and inline use-once typedefs
and improve the script a little
Change-Id: I2792ea4dd5df3a50736fbe209225c3f16fb86b84
Reviewed-on: https://gerrit.libreoffice.org/20033
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/xmlnumfi.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xmloff/source/style/xmlnumfi.cxx b/xmloff/source/style/xmlnumfi.cxx index a6fdf38bbf0d..db1edc7ce07a 100644 --- a/xmloff/source/style/xmlnumfi.cxx +++ b/xmloff/source/style/xmlnumfi.cxx @@ -59,8 +59,6 @@ struct SvXMLNumFmtEntry aName(rN), nKey(nK), bRemoveAfterUse(bR) {} }; -typedef std::map<sal_Int32, OUString> SvXMLEmbeddedElementArr; - class SvXMLNumImpData { SvNumberFormatter* pFormatter; @@ -105,7 +103,7 @@ struct SvXMLNumberInfo bool bDecReplace; bool bExpSign; double fDisplayFactor; - SvXMLEmbeddedElementArr m_EmbeddedElements; + std::map<sal_Int32, OUString> m_EmbeddedElements; SvXMLNumberInfo() { |