diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-04-17 14:49:35 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-04-17 15:10:36 +0200 |
commit | d28b9e8fefa095471d1511c7948bcaf2a3473379 (patch) | |
tree | 813708edf2feab494244da4e5d1eb299c8eb082f /include | |
parent | fc7f66d00a1738ae52a1738f456f4a720740e6d7 (diff) |
oox: initial customshape preset data loader
CustomShapeProperties::pushToPropSet() still uses the old generated
code, though.
Change-Id: I02550bdf4ac57ef54992facd7ccd144e798be1e8
Diffstat (limited to 'include')
-rw-r--r-- | include/oox/drawingml/customshapeproperties.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/oox/drawingml/customshapeproperties.hxx b/include/oox/drawingml/customshapeproperties.hxx index 8e237b26956a..29d4ba2aca9a 100644 --- a/include/oox/drawingml/customshapeproperties.hxx +++ b/include/oox/drawingml/customshapeproperties.hxx @@ -172,8 +172,10 @@ private: sal_Int32 mnTextRotateAngle; typedef boost::unordered_map< sal_Int32, CustomShapeProvider * > PresetsMap; + typedef boost::unordered_map< sal_Int32, PropertyMap > PresetDataMap; static PresetsMap maPresetsMap; + static PresetDataMap maPresetDataMap; static void initializePresetsMap(); static void initializePresetsMap1(); static void initializePresetsMap2(); @@ -181,6 +183,7 @@ private: static void initializePresetsMap4(); static void initializePresetsMap5(); static void initializePresetsMap6(); + static void initializePresetDataMap(); sal_Int32 mnArcNum; }; |