summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-02-08 23:45:30 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-02-08 23:54:00 +0100
commitc96d1ddf579fdce1e0afa8b7804d081e631deb22 (patch)
treef0f681b863610a0af4f23d12161d8763983329bb
parent4987ae04cf5b2c5e3b5c1439cab31bcf7c132f8b (diff)
oox: whitespace fix in WpsContext
Just make sure that these two new lines match the style of the rest of the file, which was so far consistent. Change-Id: I6113753157fec7fd0e0dc988885b36b477c301b2
-rw-r--r--oox/source/shape/WpsContext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/shape/WpsContext.cxx b/oox/source/shape/WpsContext.cxx
index 7d37fc19f54f..c30992d316ac 100644
--- a/oox/source/shape/WpsContext.cxx
+++ b/oox/source/shape/WpsContext.cxx
@@ -89,9 +89,9 @@ oox::core::ContextHandlerRef WpsContext::onCreateContext(sal_Int32 nElementToken
xPropertySet->setPropertyValue(aProps[i], uno::makeAny(*oInsets[i]));
// Handle text vertical adjustment inside a text frame
- if( rAttribs.hasAttribute( XML_anchor ) )
+ if (rAttribs.hasAttribute(XML_anchor))
{
- drawing::TextVerticalAdjust eAdjust = drawingml::GetTextVerticalAdjust( rAttribs.getToken( XML_anchor, XML_t ) );
+ drawing::TextVerticalAdjust eAdjust = drawingml::GetTextVerticalAdjust(rAttribs.getToken(XML_anchor, XML_t));
xPropertySet->setPropertyValue("TextVerticalAdjust", uno::makeAny(eAdjust));
}
return this;