[Libreoffice-commits] core.git: 2 commits - svl/source sw/source
Miklos Vajna
vmiklos at collabora.co.uk
Fri Apr 24 07:10:43 PDT 2015
svl/source/items/grabbagitem.cxx | 2 +-
sw/source/filter/ww8/docxsdrexport.cxx | 16 ++++++++--------
2 files changed, 9 insertions(+), 9 deletions(-)
New commits:
commit acfebe601313a913640c75a2e0dcd10abaf526ea
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date: Fri Apr 24 14:26:48 2015 +0200
DocxSdrExport::writeBoxItemLine: fix indentation
Change-Id: Ifa1faf5417e71c0528aa11c418729c895ae2d99a
diff --git a/sw/source/filter/ww8/docxsdrexport.cxx b/sw/source/filter/ww8/docxsdrexport.cxx
index 00b250c..0beefaa 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)
commit 19aadbd561bc57c1ef0048033ec8a2db97fc66f1
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date: Fri Apr 24 14:26:40 2015 +0200
Ensure that svl/grabbagitem.hxx is self-contained
Change-Id: I1b3bd4add8c32e271e51db321fafe98604b2b830
diff --git a/svl/source/items/grabbagitem.cxx b/svl/source/items/grabbagitem.cxx
index 8ca9e2c..19213b6 100644
--- a/svl/source/items/grabbagitem.cxx
+++ b/svl/source/items/grabbagitem.cxx
@@ -7,10 +7,10 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
+#include <svl/grabbagitem.hxx>
#include <sal/config.h>
#include <sal/log.hxx>
-#include <svl/grabbagitem.hxx>
#include <comphelper/sequence.hxx>
#include <com/sun/star/beans/PropertyValue.hpp>
More information about the Libreoffice-commits
mailing list