summaryrefslogtreecommitdiff
path: root/drawinglayer
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-09-13 11:05:13 +0300
committerTor Lillqvist <tml@collabora.com>2016-09-13 11:09:06 +0300
commit714de95ec549a7a79574cbe5a59450083c279dc6 (patch)
tree5360945f9b7840532837184e69b763e4741ea6bd /drawinglayer
parent0ae863c8ac4b712d67041e8bcf4069afbe71b494 (diff)
Remove nonsense comments: // bitfield
Surely the actual bitfield syntax is enough to tell the code reader that it is a bitfield. Change-Id: Ic9552e01b19c8b34b2a17db56b9ff63e7c7de926
Diffstat (limited to 'drawinglayer')
-rw-r--r--drawinglayer/source/attribute/fillgraphicattribute.cxx1
-rw-r--r--drawinglayer/source/attribute/fillhatchattribute.cxx1
-rw-r--r--drawinglayer/source/attribute/fontattribute.cxx1
-rw-r--r--drawinglayer/source/attribute/linestartendattribute.cxx1
-rw-r--r--drawinglayer/source/attribute/sdrfillgraphicattribute.cxx1
-rw-r--r--drawinglayer/source/attribute/sdrlightattribute3d.cxx1
-rw-r--r--drawinglayer/source/attribute/sdrlinestartendattribute.cxx1
-rw-r--r--drawinglayer/source/attribute/sdrobjectattribute3d.cxx1
-rw-r--r--drawinglayer/source/attribute/sdrsceneattribute3d.cxx1
-rw-r--r--drawinglayer/source/geometry/viewinformation2d.cxx1
-rw-r--r--drawinglayer/source/primitive2d/metafileprimitive2d.cxx1
-rw-r--r--drawinglayer/source/processor3d/zbufferprocessor3d.cxx2
12 files changed, 0 insertions, 13 deletions
diff --git a/drawinglayer/source/attribute/fillgraphicattribute.cxx b/drawinglayer/source/attribute/fillgraphicattribute.cxx
index 5331f47a4fc4..b0dba109a166 100644
--- a/drawinglayer/source/attribute/fillgraphicattribute.cxx
+++ b/drawinglayer/source/attribute/fillgraphicattribute.cxx
@@ -31,7 +31,6 @@ namespace drawinglayer
Graphic maGraphic;
basegfx::B2DRange maGraphicRange;
- // bitfield
bool mbTiling : 1;
// tiling definitions, offsets in X/Y in percent for each 2nd row.
diff --git a/drawinglayer/source/attribute/fillhatchattribute.cxx b/drawinglayer/source/attribute/fillhatchattribute.cxx
index fef4cdf91679..4870202defef 100644
--- a/drawinglayer/source/attribute/fillhatchattribute.cxx
+++ b/drawinglayer/source/attribute/fillhatchattribute.cxx
@@ -36,7 +36,6 @@ namespace drawinglayer
basegfx::BColor maColor;
sal_uInt32 mnMinimalDiscreteDistance;
- // bitfield
bool mbFillBackground : 1;
ImpFillHatchAttribute(
diff --git a/drawinglayer/source/attribute/fontattribute.cxx b/drawinglayer/source/attribute/fontattribute.cxx
index 95a4ef7d708a..ed7d3a6ad512 100644
--- a/drawinglayer/source/attribute/fontattribute.cxx
+++ b/drawinglayer/source/attribute/fontattribute.cxx
@@ -34,7 +34,6 @@ namespace drawinglayer
OUString maStyleName; // Font Style Name
sal_uInt16 mnWeight; // Font weight
- /// bitfield
bool mbSymbol : 1; // Symbol Font Flag
bool mbVertical : 1; // Vertical Text Flag
bool mbItalic : 1; // Italic Flag
diff --git a/drawinglayer/source/attribute/linestartendattribute.cxx b/drawinglayer/source/attribute/linestartendattribute.cxx
index ce59c1d60cb8..c156d2a66659 100644
--- a/drawinglayer/source/attribute/linestartendattribute.cxx
+++ b/drawinglayer/source/attribute/linestartendattribute.cxx
@@ -34,7 +34,6 @@ namespace drawinglayer
double mfWidth; // absolute line StartEndGeometry base width
basegfx::B2DPolyPolygon maPolyPolygon; // the StartEndGeometry PolyPolygon
- // bitfield
bool mbCentered : 1; // use centered to ineStart/End point?
ImpLineStartEndAttribute(
diff --git a/drawinglayer/source/attribute/sdrfillgraphicattribute.cxx b/drawinglayer/source/attribute/sdrfillgraphicattribute.cxx
index 0d681434a718..e7b8c1f6b338 100644
--- a/drawinglayer/source/attribute/sdrfillgraphicattribute.cxx
+++ b/drawinglayer/source/attribute/sdrfillgraphicattribute.cxx
@@ -38,7 +38,6 @@ namespace drawinglayer
basegfx::B2DVector maOffsetPosition;
basegfx::B2DVector maRectPoint;
- // bitfield
bool mbTiling : 1;
bool mbStretch : 1;
bool mbLogSize : 1;
diff --git a/drawinglayer/source/attribute/sdrlightattribute3d.cxx b/drawinglayer/source/attribute/sdrlightattribute3d.cxx
index e249a88c2677..ddbb2633ee17 100644
--- a/drawinglayer/source/attribute/sdrlightattribute3d.cxx
+++ b/drawinglayer/source/attribute/sdrlightattribute3d.cxx
@@ -34,7 +34,6 @@ namespace drawinglayer
basegfx::BColor maColor;
basegfx::B3DVector maDirection;
- // bitfield
bool mbSpecular : 1;
ImpSdr3DLightAttribute(
diff --git a/drawinglayer/source/attribute/sdrlinestartendattribute.cxx b/drawinglayer/source/attribute/sdrlinestartendattribute.cxx
index c133bf95a5ef..370db4f5a8ef 100644
--- a/drawinglayer/source/attribute/sdrlinestartendattribute.cxx
+++ b/drawinglayer/source/attribute/sdrlinestartendattribute.cxx
@@ -35,7 +35,6 @@ namespace drawinglayer
double mfStartWidth; // 1/100th mm
double mfEndWidth; // 1/100th mm
- // bitfield
bool mbStartActive : 1; // start of Line is active
bool mbEndActive : 1; // end of Line is active
bool mbStartCentered : 1; // Line is centered on line start point
diff --git a/drawinglayer/source/attribute/sdrobjectattribute3d.cxx b/drawinglayer/source/attribute/sdrobjectattribute3d.cxx
index d513c39eb4aa..941d70593bef 100644
--- a/drawinglayer/source/attribute/sdrobjectattribute3d.cxx
+++ b/drawinglayer/source/attribute/sdrobjectattribute3d.cxx
@@ -37,7 +37,6 @@ namespace drawinglayer
css::drawing::TextureMode maTextureMode; // texture kind (see uno API)
MaterialAttribute3D maMaterial; // object, specular and emissive colors, SpecularIntensity
- // bitfield
bool mbNormalsInvert : 1; // invert normals
bool mbDoubleSided : 1; // surfaces are double sided
bool mbShadow3D : 1; // display shadow in 3D (if on), params for that are at scene
diff --git a/drawinglayer/source/attribute/sdrsceneattribute3d.cxx b/drawinglayer/source/attribute/sdrsceneattribute3d.cxx
index 2f0ce70b7d4c..d6e49921776c 100644
--- a/drawinglayer/source/attribute/sdrsceneattribute3d.cxx
+++ b/drawinglayer/source/attribute/sdrsceneattribute3d.cxx
@@ -34,7 +34,6 @@ namespace drawinglayer
css::drawing::ProjectionMode maProjectionMode;
css::drawing::ShadeMode maShadeMode;
- // bitfield
bool mbTwoSidedLighting : 1;
public:
diff --git a/drawinglayer/source/geometry/viewinformation2d.cxx b/drawinglayer/source/geometry/viewinformation2d.cxx
index a50a8f0e1854..e792c978c306 100644
--- a/drawinglayer/source/geometry/viewinformation2d.cxx
+++ b/drawinglayer/source/geometry/viewinformation2d.cxx
@@ -66,7 +66,6 @@ namespace drawinglayer
// the point in time
double mfViewTime;
- // bitfield
bool mbReducedDisplayQuality : 1;
// the complete PropertyValue representation (if already created)
diff --git a/drawinglayer/source/primitive2d/metafileprimitive2d.cxx b/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
index a94549a93af1..f83939a65cd4 100644
--- a/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/metafileprimitive2d.cxx
@@ -92,7 +92,6 @@ namespace
LanguageType maLanguageType;
PushFlags mnPushFlags;
- /// bitfield
/// contains all active markers
bool mbLineColor : 1;
bool mbFillColor : 1;
diff --git a/drawinglayer/source/processor3d/zbufferprocessor3d.cxx b/drawinglayer/source/processor3d/zbufferprocessor3d.cxx
index 3944f83705e0..9d881d1c25e6 100644
--- a/drawinglayer/source/processor3d/zbufferprocessor3d.cxx
+++ b/drawinglayer/source/processor3d/zbufferprocessor3d.cxx
@@ -50,7 +50,6 @@ private:
// current material to use for ratsreconversion
const drawinglayer::attribute::MaterialAttribute3D* mpCurrentMaterial;
- // bitfield
// some boolean flags for line span interpolator usages
bool mbModifyColor : 1;
bool mbUseTex : 1;
@@ -377,7 +376,6 @@ private:
basegfx::B3DPolyPolygon maPolyPolygon;
double mfCenterZ;
- // bitfield
bool mbModulate : 1;
bool mbFilter : 1;
bool mbSimpleTextureActive : 1;