summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-17 10:29:59 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-17 09:49:35 +0000
commite963a8891238efc758306a09debbc93904a5388b (patch)
tree503b140d741417b6a8401ccaf230b3d3a1ea909e /filter
parent771d9ef3f65785092267f6068384e8cdda17f883 (diff)
formatting of public/private/protected section qualifiers
make it consistent across the codebase, no space between keyword and the colon Change-Id: Idca61ddfc74ad2460fb05fe417499324b05e5de5 Reviewed-on: https://gerrit.libreoffice.org/17148 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/graphicfilter/idxf/dxfentrd.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/filter/source/graphicfilter/idxf/dxfentrd.hxx b/filter/source/graphicfilter/idxf/dxfentrd.hxx
index 83b991005141..dd02daca1d93 100644
--- a/filter/source/graphicfilter/idxf/dxfentrd.hxx
+++ b/filter/source/graphicfilter/idxf/dxfentrd.hxx
@@ -325,7 +325,7 @@ class DXFLWPolyLineEntity : public DXFBasicEntity
{
sal_Int32 nIndex;
- public :
+ public:
sal_Int32 nCount; // 90
sal_Int32 nFlags; // 70 1 = closed, 128 = plinegen
@@ -338,7 +338,7 @@ class DXFLWPolyLineEntity : public DXFBasicEntity
DXFLWPolyLineEntity();
virtual ~DXFLWPolyLineEntity();
- protected :
+ protected:
virtual void EvaluateGroup( DXFGroupReader & rDGR ) SAL_OVERRIDE;
@@ -351,7 +351,7 @@ struct DXFEdgeType
virtual ~DXFEdgeType(){};
virtual bool EvaluateGroup( DXFGroupReader & /*rDGR*/ ){ return true; };
- protected :
+ protected:
DXFEdgeType( sal_Int32 EdgeType ):nEdgeType(EdgeType){};
};
@@ -429,7 +429,7 @@ class DXFHatchEntity : public DXFBasicEntity
bool bIsInBoundaryPathContext;
sal_Int32 nCurrentBoundaryPathIndex;
- public :
+ public:
DXFVector aElevationPoint;
sal_Int32 nFlags; // 70 (solid fill = 1, pattern fill = 0)
@@ -449,7 +449,7 @@ class DXFHatchEntity : public DXFBasicEntity
DXFHatchEntity();
virtual ~DXFHatchEntity();
- protected :
+ protected:
virtual void EvaluateGroup( DXFGroupReader & rDGR ) SAL_OVERRIDE;
};