diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-07-02 16:15:00 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-07-02 18:45:39 +0200 |
commit | 9d6a532e49b2bdc0ee808ff0f4e17d327d79a754 (patch) | |
tree | 62a880c0af798f870174c8fc6753e4ddd79f8c64 /xmloff/source/style/XMLBackgroundImageContext.cxx | |
parent | e6862e7828ba6bdd63bffd7eeaecc7de5d7d1c2e (diff) |
Upcoming improved loplugin:staticanonymous -> redundantstatic: xmloff
Change-Id: I47bd2f4b6bbe47b8a6c0aa8102186bf25a3804f6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97772
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'xmloff/source/style/XMLBackgroundImageContext.cxx')
-rw-r--r-- | xmloff/source/style/XMLBackgroundImageContext.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/style/XMLBackgroundImageContext.cxx b/xmloff/source/style/XMLBackgroundImageContext.cxx index 95772ae0e42f..a390a03fe03c 100644 --- a/xmloff/source/style/XMLBackgroundImageContext.cxx +++ b/xmloff/source/style/XMLBackgroundImageContext.cxx @@ -59,7 +59,7 @@ enum SvXMLTokenMapAttrs } -static const SvXMLTokenMapEntry aBGImgAttributesAttrTokenMap[] = +const SvXMLTokenMapEntry aBGImgAttributesAttrTokenMap[] = { { XML_NAMESPACE_XLINK, XML_HREF, XML_TOK_BGIMG_HREF }, { XML_NAMESPACE_XLINK, XML_TYPE, XML_TOK_BGIMG_TYPE }, @@ -73,14 +73,14 @@ static const SvXMLTokenMapEntry aBGImgAttributesAttrTokenMap[] = }; -static const SvXMLEnumMapEntry<GraphicLocation> psXML_BrushHoriPos[] = +const SvXMLEnumMapEntry<GraphicLocation> psXML_BrushHoriPos[] = { { XML_LEFT, GraphicLocation_LEFT_MIDDLE }, { XML_RIGHT, GraphicLocation_RIGHT_MIDDLE }, { XML_TOKEN_INVALID, GraphicLocation(0) } }; -static const SvXMLEnumMapEntry<GraphicLocation> psXML_BrushVertPos[] = +const SvXMLEnumMapEntry<GraphicLocation> psXML_BrushVertPos[] = { { XML_TOP, GraphicLocation_MIDDLE_TOP }, { XML_BOTTOM, GraphicLocation_MIDDLE_BOTTOM }, |