summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-05-31 13:32:08 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-01 15:21:18 +0100
commit7f1b2040ee37d64320a79c068e206f648f165735 (patch)
treeead712c4999f432f5c701c955e02b78f02e25b34 /xmloff
parenta6489060efa86927c6056309072fd27138a65630 (diff)
this is overly static for little gain
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/text/txtparae.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx
index 821ddac5a8fb..7d402c935ee8 100644
--- a/xmloff/source/text/txtparae.cxx
+++ b/xmloff/source/text/txtparae.cxx
@@ -400,10 +400,10 @@ BoundFrameSets::BoundFrameSets(const Reference<XInterface> xModel)
void FieldParamExporter::Export()
{
- static const Type aStringType = ::getCppuType((OUString*)0);
- static const Type aBoolType = ::getCppuType((sal_Bool*)0);
- static const Type aSeqType = ::getCppuType((Sequence<OUString>*)0);
- static const Type aIntType = ::getCppuType((sal_Int32*)0);
+ const Type aStringType = ::getCppuType((OUString*)0);
+ const Type aBoolType = ::getCppuType((sal_Bool*)0);
+ const Type aSeqType = ::getCppuType((Sequence<OUString>*)0);
+ const Type aIntType = ::getCppuType((sal_Int32*)0);
Sequence<OUString> vParameters(m_xFieldParams->getElementNames());
for(const OUString* pCurrent=::comphelper::stl_begin(vParameters); pCurrent!=::comphelper::stl_end(vParameters); ++pCurrent)
{