summaryrefslogtreecommitdiff
path: root/include/oox
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-05-29 15:04:53 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-06-02 08:39:44 +0200
commit468e8d53fbb07dce271a1f7fabf5711993e01eb7 (patch)
tree60a0474d2789904e17ff22623f01175c11836647 /include/oox
parente9dbdc9fc6ff943650e6e18986ed1cce913971ef (diff)
inline some use-once typedefs
Change-Id: I335e0c5cf7944efa487e4535a9e6a5baab2f36dd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95140 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/oox')
-rw-r--r--include/oox/helper/propertymap.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/oox/helper/propertymap.hxx b/include/oox/helper/propertymap.hxx
index db7b0297d680..85635f314d5e 100644
--- a/include/oox/helper/propertymap.hxx
+++ b/include/oox/helper/propertymap.hxx
@@ -40,7 +40,6 @@ namespace oox {
struct PropertyNameVector;
-typedef ::std::map< sal_Int32, css::uno::Any > PropertyMapType;
typedef ::std::map< OUString, css::uno::Any > PropertyNameMap;
/** A helper that maps property identifiers to property values.
@@ -118,7 +117,7 @@ private:
const PropertyNameVector* mpPropNames;
protected:
- PropertyMapType maProperties;
+ std::map< sal_Int32, css::uno::Any > maProperties;
};