From 7f1b2040ee37d64320a79c068e206f648f165735 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Tue, 31 May 2011 13:32:08 +0100 Subject: [PATCH] this is overly static for little gain --- xmloff/source/text/txtparae.cxx | 8 ++++---- 1 file 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 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*)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*)0); + const Type aIntType = ::getCppuType((sal_Int32*)0); Sequence vParameters(m_xFieldParams->getElementNames()); for(const OUString* pCurrent=::comphelper::stl_begin(vParameters); pCurrent!=::comphelper::stl_end(vParameters); ++pCurrent) {