summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-04-24 14:26:48 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-04-24 16:09:54 +0200
commitacfebe601313a913640c75a2e0dcd10abaf526ea (patch)
treea8ec1c58ec98da563213b38a7990604d119df724 /sw
parent19aadbd561bc57c1ef0048033ec8a2db97fc66f1 (diff)
DocxSdrExport::writeBoxItemLine: fix indentation
Change-Id: Ifa1faf5417e71c0528aa11c418729c895ae2d99a
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/docxsdrexport.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/filter/ww8/docxsdrexport.cxx b/sw/source/filter/ww8/docxsdrexport.cxx
index 00b250c92902..0beefaa2f03e 100644
--- a/sw/source/filter/ww8/docxsdrexport.cxx
+++ b/sw/source/filter/ww8/docxsdrexport.cxx
@@ -1309,21 +1309,21 @@ void DocxSdrExport::writeBoxItemLine(const SvxBoxItem& rBox)
{
const editeng::SvxBorderLine* pBorderLine = 0;
- if( rBox.GetTop() )
+ if (rBox.GetTop())
{
- pBorderLine = rBox.GetTop();
+ pBorderLine = rBox.GetTop();
}
- else if( rBox.GetLeft() )
+ else if (rBox.GetLeft())
{
- pBorderLine = rBox.GetLeft();
+ pBorderLine = rBox.GetLeft();
}
- else if( rBox.GetBottom() )
+ else if (rBox.GetBottom())
{
- pBorderLine = rBox.GetBottom();
+ pBorderLine = rBox.GetBottom();
}
- else if( rBox.GetRight() )
+ else if (rBox.GetRight())
{
- pBorderLine = rBox.GetRight();
+ pBorderLine = rBox.GetRight();
}
if (!pBorderLine)