summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--writerfilter/source/dmapper/SdtHelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/SdtHelper.cxx b/writerfilter/source/dmapper/SdtHelper.cxx
index af30b74c125a..32691d96a811 100644
--- a/writerfilter/source/dmapper/SdtHelper.cxx
+++ b/writerfilter/source/dmapper/SdtHelper.cxx
@@ -190,7 +190,7 @@ bool SdtHelper::hasElements()
void SdtHelper::appendToInteropGrabBag(const OUString& rName, const css::uno::Any& rValue)
{
- if(isInteropGrabBagEnabled())
+ if (isInteropGrabBagEnabled())
{
sal_Int32 nLength = m_aGrabBag.getLength();
m_aGrabBag.realloc(nLength + 1);
@@ -202,7 +202,7 @@ void SdtHelper::appendToInteropGrabBag(const OUString& rName, const css::uno::An
beans::PropertyValue SdtHelper::getInteropGrabBagAndClear()
{
beans::PropertyValue aProp;
- if(isInteropGrabBagEnabled())
+ if (isInteropGrabBagEnabled())
{
aProp.Name = m_sGrabBagName;
aProp.Value = uno::Any(m_aGrabBag);