diff options
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/inc/svgdocument.hxx | 5 | ||||
-rw-r--r-- | svgio/source/svgreader/svgtoken.cxx | 2 | ||||
-rw-r--r-- | svgio/source/svgreader/svgtools.cxx | 3 |
3 files changed, 4 insertions, 6 deletions
diff --git a/svgio/inc/svgdocument.hxx b/svgio/inc/svgdocument.hxx index 687fc494c2c3..979b466c8206 100644 --- a/svgio/inc/svgdocument.hxx +++ b/svgio/inc/svgdocument.hxx @@ -37,13 +37,12 @@ namespace svgio const OUString maAbsolutePath; /// hash mapper to find nodes by their id - typedef std::unordered_map< OUString, const SvgNode*, - OUStringHash > IdTokenMapper; + typedef std::unordered_map< OUString, const SvgNode* > IdTokenMapper; typedef std::pair< const OUString, const SvgNode* > IdTokenValueType; IdTokenMapper maIdTokenMapperList; /// hash mapper to find css styles by their id - typedef std::unordered_map< OUString, const SvgStyleAttributes*, OUStringHash > IdStyleTokenMapper; + typedef std::unordered_map< OUString, const SvgStyleAttributes* > IdStyleTokenMapper; typedef std::pair< const OUString, const SvgStyleAttributes* > IdStyleTokenValueType; IdStyleTokenMapper maIdStyleTokenMapperList; diff --git a/svgio/source/svgreader/svgtoken.cxx b/svgio/source/svgreader/svgtoken.cxx index af1970b51e8a..4416d32c1de9 100644 --- a/svgio/source/svgreader/svgtoken.cxx +++ b/svgio/source/svgreader/svgtoken.cxx @@ -167,7 +167,7 @@ namespace svgio SVGToken StrToSVGToken(const OUString& rStr, bool bCaseIndependent) { - typedef std::unordered_map< OUString, SVGToken, OUStringHash > SVGTokenMapper; + typedef std::unordered_map< OUString, SVGToken > SVGTokenMapper; typedef std::pair< OUString, SVGToken > SVGTokenValueType; static SVGTokenMapper aSVGTokenMapperList; diff --git a/svgio/source/svgreader/svgtools.cxx b/svgio/source/svgreader/svgtools.cxx index d5477d82c8a2..a0024730f89a 100644 --- a/svgio/source/svgreader/svgtools.cxx +++ b/svgio/source/svgreader/svgtools.cxx @@ -631,8 +631,7 @@ namespace svgio bool match_colorKeyword(basegfx::BColor& rColor, const OUString& rName, bool bCaseIndependent) { - typedef std::unordered_map< OUString, Color, - OUStringHash > ColorTokenMapper; + typedef std::unordered_map< OUString, Color > ColorTokenMapper; typedef std::pair< OUString, Color > ColorTokenValueType; ColorTokenMapper aColorTokenMapperList; |