diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-09-20 13:56:26 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-09-20 14:18:17 +0300 |
commit | fed4ca185bc2fa29b915e6ea63b0bf7aeec29e5f (patch) | |
tree | e50207df207a65a390e63e5f03deef0cd59d044b /xmloff | |
parent | c672b1f43c64e5f411badc2deb2d39a7c0fe6373 (diff) |
Sprinkle some staticness to avoid duplicate symbols when DISABLE_DYNLOADING
Change-Id: I9c5203400904902238c1f9a8f01338fdcf2904d8
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/XMLBackgroundImageContext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/style/XMLBackgroundImageContext.cxx b/xmloff/source/style/XMLBackgroundImageContext.cxx index 3c466000bd3c..ae1e77b356cf 100644 --- a/xmloff/source/style/XMLBackgroundImageContext.cxx +++ b/xmloff/source/style/XMLBackgroundImageContext.cxx @@ -82,14 +82,14 @@ const SvXMLTokenMapEntry* lcl_getBGImgAttributesAttrTokenMap() -SvXMLEnumMapEntry psXML_BrushHoriPos[] = +static SvXMLEnumMapEntry psXML_BrushHoriPos[] = { { XML_LEFT, GraphicLocation_LEFT_MIDDLE }, { XML_RIGHT, GraphicLocation_RIGHT_MIDDLE }, { XML_TOKEN_INVALID, 0 } }; -SvXMLEnumMapEntry psXML_BrushVertPos[] = +static SvXMLEnumMapEntry psXML_BrushVertPos[] = { { XML_TOP, GraphicLocation_MIDDLE_TOP }, { XML_BOTTOM, GraphicLocation_MIDDLE_BOTTOM }, |