diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-09-13 11:05:13 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-09-13 11:09:06 +0300 |
commit | 714de95ec549a7a79574cbe5a59450083c279dc6 (patch) | |
tree | 5360945f9b7840532837184e69b763e4741ea6bd | |
parent | 0ae863c8ac4b712d67041e8bcf4069afbe71b494 (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
94 files changed, 0 insertions, 110 deletions
diff --git a/basegfx/source/polygon/b3dpolygon.cxx b/basegfx/source/polygon/b3dpolygon.cxx index 517cb97ec97e..e7f088210bd0 100644 --- a/basegfx/source/polygon/b3dpolygon.cxx +++ b/basegfx/source/polygon/b3dpolygon.cxx @@ -758,7 +758,6 @@ class ImplB3DPolygon // The calculated plane normal. mbPlaneNormalValid says if it's valid. ::basegfx::B3DVector maPlaneNormal; - // bitfield // flag which decides if this polygon is opened or closed bool mbIsClosed : 1; diff --git a/comphelper/source/container/embeddedobjectcontainer.cxx b/comphelper/source/container/embeddedobjectcontainer.cxx index fd391186c137..dc4c6bc2e124 100644 --- a/comphelper/source/container/embeddedobjectcontainer.cxx +++ b/comphelper/source/container/embeddedobjectcontainer.cxx @@ -66,7 +66,6 @@ struct EmbedImpl //EmbeddedObjectContainerNameMap maTempObjectContainer; //uno::Reference < embed::XStorage > mxTempStorage; - /// bitfield bool mbOwnsStorage : 1; bool mbUserAllowsLinkUpdate : 1; diff --git a/cui/source/inc/bbdlg.hxx b/cui/source/inc/bbdlg.hxx index 6d57b8ac0bdc..750a1f0bdd80 100644 --- a/cui/source/inc/bbdlg.hxx +++ b/cui/source/inc/bbdlg.hxx @@ -36,7 +36,6 @@ protected: virtual void PageCreated( sal_uInt16 nPageId, SfxTabPage& rTabPage ) override; private: - /// bitfield bool mbEnableBackgroundSelector : 1; ///< for Border/Background bool mbEnableDrawingLayerFillStyles : 1; ///< for full DrawingLayer FillStyles sal_uInt16 m_nBackgroundPageId; 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; diff --git a/include/basegfx/color/bcolormodifier.hxx b/include/basegfx/color/bcolormodifier.hxx index c14af2bc720b..73f9fbbe1aa3 100644 --- a/include/basegfx/color/bcolormodifier.hxx +++ b/include/basegfx/color/bcolormodifier.hxx @@ -290,7 +290,6 @@ namespace basegfx double mfValue; double mfInvValue; - /// bitfield bool mbUseIt : 1; protected: @@ -335,7 +334,6 @@ namespace basegfx double mfGreenOff; double mfBlueOff; - /// bitfield bool mbUseIt : 1; protected: diff --git a/include/basegfx/matrix/b2dhommatrixtools.hxx b/include/basegfx/matrix/b2dhommatrixtools.hxx index f6b955ca2ab5..5dcd1b47936d 100644 --- a/include/basegfx/matrix/b2dhommatrixtools.hxx +++ b/include/basegfx/matrix/b2dhommatrixtools.hxx @@ -186,7 +186,6 @@ namespace basegfx double mfRotate; double mfShearX; - // bitfield bool mbDecomposed : 1; void impCheckDecompose() diff --git a/include/basegfx/pixel/bpixel.hxx b/include/basegfx/pixel/bpixel.hxx index a9fea5b6dbde..bce856c27a97 100644 --- a/include/basegfx/pixel/bpixel.hxx +++ b/include/basegfx/pixel/bpixel.hxx @@ -34,7 +34,6 @@ namespace basegfx { struct { - // bitfield unsigned mnR : 8; // red intensity unsigned mnG : 8; // green intensity unsigned mnB : 8; // blue intensity @@ -43,7 +42,6 @@ namespace basegfx struct { - // bitfield unsigned mnValue : 32; // all values } maCombinedRGBO; } maPixelUnion; diff --git a/include/drawinglayer/primitive2d/animatedprimitive2d.hxx b/include/drawinglayer/primitive2d/animatedprimitive2d.hxx index d9f21164d866..6241671f0607 100644 --- a/include/drawinglayer/primitive2d/animatedprimitive2d.hxx +++ b/include/drawinglayer/primitive2d/animatedprimitive2d.hxx @@ -60,7 +60,6 @@ namespace drawinglayer */ animation::AnimationEntry* mpAnimationEntry; - /// bitfield /** flag if this is a text or graphic animation. Necessary since SdrViews need to differentiate between both types if they are on/off */ diff --git a/include/drawinglayer/primitive2d/embedded3dprimitive2d.hxx b/include/drawinglayer/primitive2d/embedded3dprimitive2d.hxx index 92bde2b8ce43..38d226c7a0e8 100644 --- a/include/drawinglayer/primitive2d/embedded3dprimitive2d.hxx +++ b/include/drawinglayer/primitive2d/embedded3dprimitive2d.hxx @@ -72,7 +72,6 @@ namespace drawinglayer /// #i96669# add simple range buffering for this primitive basegfx::B2DRange maB2DRange; - /// bitfield /** flag if given 3D geometry is already cheched for shadow definitions and 2d shadows are created in maShadowPrimitives */ diff --git a/include/drawinglayer/primitive2d/polypolygonprimitive2d.hxx b/include/drawinglayer/primitive2d/polypolygonprimitive2d.hxx index 63e6866fdb44..6a954b93e983 100644 --- a/include/drawinglayer/primitive2d/polypolygonprimitive2d.hxx +++ b/include/drawinglayer/primitive2d/polypolygonprimitive2d.hxx @@ -429,7 +429,6 @@ namespace drawinglayer /// the discrete grow size ('pixels'), only positive values allowed double mfDiscreteGrow; - /// bitfield /// draw polygons filled when fill is set bool mbFill : 1; diff --git a/include/drawinglayer/primitive2d/sceneprimitive2d.hxx b/include/drawinglayer/primitive2d/sceneprimitive2d.hxx index b434dc996bf1..80c0e2a07e96 100644 --- a/include/drawinglayer/primitive2d/sceneprimitive2d.hxx +++ b/include/drawinglayer/primitive2d/sceneprimitive2d.hxx @@ -73,7 +73,6 @@ namespace drawinglayer /// the primitiveSequence for on-demand created shadow primitives (see mbShadow3DChecked) Primitive2DContainer maShadowPrimitives; - /// bitfield /** flag if given 3D geometry is already cheched for shadow definitions and 2d shadows are created in maShadowPrimitives */ diff --git a/include/drawinglayer/primitive2d/svggradientprimitive2d.hxx b/include/drawinglayer/primitive2d/svggradientprimitive2d.hxx index 98ee0d76e3ec..d44cb72b1dfb 100644 --- a/include/drawinglayer/primitive2d/svggradientprimitive2d.hxx +++ b/include/drawinglayer/primitive2d/svggradientprimitive2d.hxx @@ -108,7 +108,6 @@ namespace drawinglayer /// how to spread SpreadMethod maSpreadMethod; - /// bitfield bool mbPreconditionsChecked : 1; bool mbCreatesContent : 1; bool mbSingleEntry : 1; @@ -248,7 +247,6 @@ namespace drawinglayer // internal helper for case SpreadMethod::Reflect SvgGradientEntryVector maMirroredGradientEntries; - /// bitfield bool mbFocalSet : 1; /// local helpers diff --git a/include/drawinglayer/primitive2d/textbreakuphelper.hxx b/include/drawinglayer/primitive2d/textbreakuphelper.hxx index 73a57f7f2640..44dcd71efb20 100644 --- a/include/drawinglayer/primitive2d/textbreakuphelper.hxx +++ b/include/drawinglayer/primitive2d/textbreakuphelper.hxx @@ -45,7 +45,6 @@ namespace drawinglayer TextLayouterDevice maTextLayouter; basegfx::tools::B2DHomMatrixBufferedOnDemandDecompose maDecTrans; - /// bitfield bool mbNoDXArray : 1; /// create a portion from nIndex to nLength and append to rTempResult diff --git a/include/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx b/include/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx index 23f6b26f33b3..0ab2a29d2f6e 100644 --- a/include/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx +++ b/include/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx @@ -56,7 +56,6 @@ namespace drawinglayer TextEmphasisMark meTextEmphasisMark; TextRelief meTextRelief; - /// bitfield bool mbUnderlineAbove : 1; bool mbWordLineMode : 1; bool mbEmphasisMarkAbove : 1; diff --git a/include/drawinglayer/primitive3d/polypolygonprimitive3d.hxx b/include/drawinglayer/primitive3d/polypolygonprimitive3d.hxx index 89fc50ce1521..52f2cbcec7f9 100644 --- a/include/drawinglayer/primitive3d/polypolygonprimitive3d.hxx +++ b/include/drawinglayer/primitive3d/polypolygonprimitive3d.hxx @@ -48,7 +48,6 @@ namespace drawinglayer /// the fill parameters attribute::MaterialAttribute3D maMaterial; - /// bitfield bool mbDoubleSided : 1; public: diff --git a/include/drawinglayer/primitive3d/sdrextrudeprimitive3d.hxx b/include/drawinglayer/primitive3d/sdrextrudeprimitive3d.hxx index 32f662564276..fc4e7bc9ede9 100644 --- a/include/drawinglayer/primitive3d/sdrextrudeprimitive3d.hxx +++ b/include/drawinglayer/primitive3d/sdrextrudeprimitive3d.hxx @@ -57,7 +57,6 @@ namespace drawinglayer /// decomposition data when ReducedLineGeometry is used, see get3DDecomposition geometry::ViewInformation3D* mpLastRLGViewInformation; - /// bitfield bool mbSmoothNormals : 1; // Plane self bool mbSmoothHorizontalNormals : 1; // always bool mbSmoothLids : 1; // Front/back diff --git a/include/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx b/include/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx index a880c6ff572b..3da2ac367e19 100644 --- a/include/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx +++ b/include/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx @@ -59,7 +59,6 @@ namespace drawinglayer /// decomposition data when ReducedLineGeometry is used, see get3DDecomposition geometry::ViewInformation3D* mpLastRLGViewInformation; - /// bitfield bool mbSmoothNormals : 1; // Plane self bool mbSmoothHorizontalNormals : 1; // always bool mbSmoothLids : 1; // Front/back diff --git a/include/drawinglayer/primitive3d/shadowprimitive3d.hxx b/include/drawinglayer/primitive3d/shadowprimitive3d.hxx index 0dd4a1289613..b9a43cf9c1ea 100644 --- a/include/drawinglayer/primitive3d/shadowprimitive3d.hxx +++ b/include/drawinglayer/primitive3d/shadowprimitive3d.hxx @@ -49,7 +49,6 @@ namespace drawinglayer basegfx::BColor maShadowColor; double mfShadowTransparence; - /// bitfield bool mbShadow3D : 1; public: diff --git a/include/drawinglayer/primitive3d/textureprimitive3d.hxx b/include/drawinglayer/primitive3d/textureprimitive3d.hxx index 3cf1bd5d6c3a..ce1098b59b6d 100644 --- a/include/drawinglayer/primitive3d/textureprimitive3d.hxx +++ b/include/drawinglayer/primitive3d/textureprimitive3d.hxx @@ -45,7 +45,6 @@ namespace drawinglayer /// texture geometry definition basegfx::B2DVector maTextureSize; - /// bitfield /// flag if texture shall be modulated with white interpolated color bool mbModulate : 1; diff --git a/include/drawinglayer/processor2d/contourextractor2d.hxx b/include/drawinglayer/processor2d/contourextractor2d.hxx index dd06df9c4f11..8414167a5e43 100644 --- a/include/drawinglayer/processor2d/contourextractor2d.hxx +++ b/include/drawinglayer/processor2d/contourextractor2d.hxx @@ -42,7 +42,6 @@ namespace drawinglayer /// the extracted contour basegfx::B2DPolyPolygonVector maExtractedContour; - /// bitfield bool mbExtractFillOnly : 1; /// tooling methods diff --git a/include/drawinglayer/processor2d/hittestprocessor2d.hxx b/include/drawinglayer/processor2d/hittestprocessor2d.hxx index d7d3eba24347..56a87c53e3c5 100644 --- a/include/drawinglayer/processor2d/hittestprocessor2d.hxx +++ b/include/drawinglayer/processor2d/hittestprocessor2d.hxx @@ -46,7 +46,6 @@ namespace drawinglayer /// discrete HitTolerance double mfDiscreteHitTolerance; - /// bitfield bool mbHit : 1; bool mbHitToleranceUsed : 1; diff --git a/include/drawinglayer/processor2d/linegeometryextractor2d.hxx b/include/drawinglayer/processor2d/linegeometryextractor2d.hxx index 389f8768dae1..8d527d52bd55 100644 --- a/include/drawinglayer/processor2d/linegeometryextractor2d.hxx +++ b/include/drawinglayer/processor2d/linegeometryextractor2d.hxx @@ -42,7 +42,6 @@ namespace drawinglayer basegfx::B2DPolygonVector maExtractedHairlines; basegfx::B2DPolyPolygonVector maExtractedLineFills; - /// bitfield bool mbInLineGeometry : 1; /// tooling methods diff --git a/include/drawinglayer/processor3d/cutfindprocessor3d.hxx b/include/drawinglayer/processor3d/cutfindprocessor3d.hxx index c5e93b63a826..eb4e222a7f8d 100644 --- a/include/drawinglayer/processor3d/cutfindprocessor3d.hxx +++ b/include/drawinglayer/processor3d/cutfindprocessor3d.hxx @@ -50,7 +50,6 @@ namespace drawinglayer */ basegfx::B3DHomMatrix maCombinedTransform; - /// bitfield bool mbAnyHit : 1; /* as tooling, the process() implementation takes over API handling and calls this diff --git a/include/drawinglayer/processor3d/defaultprocessor3d.hxx b/include/drawinglayer/processor3d/defaultprocessor3d.hxx index 7bbb5a4aaa37..53725d89a236 100644 --- a/include/drawinglayer/processor3d/defaultprocessor3d.hxx +++ b/include/drawinglayer/processor3d/defaultprocessor3d.hxx @@ -96,7 +96,6 @@ namespace drawinglayer /// counter for entered transparence textures sal_uInt32 mnTransparenceCounter; - /// bitfield bool mbModulate : 1; bool mbFilter : 1; bool mbSimpleTextureActive : 1; diff --git a/include/drawinglayer/processor3d/shadow3dextractor.hxx b/include/drawinglayer/processor3d/shadow3dextractor.hxx index c3e4e032a851..019a75f85d78 100644 --- a/include/drawinglayer/processor3d/shadow3dextractor.hxx +++ b/include/drawinglayer/processor3d/shadow3dextractor.hxx @@ -67,7 +67,6 @@ namespace drawinglayer */ basegfx::BColor maPrimitiveColor; - /// bitfield /// flag if shadow plane projection preparation leaded to valid results bool mbShadowProjectionIsValid : 1; diff --git a/include/drawinglayer/texture/texture.hxx b/include/drawinglayer/texture/texture.hxx index b4d78ba7a635..6c70343989be 100644 --- a/include/drawinglayer/texture/texture.hxx +++ b/include/drawinglayer/texture/texture.hxx @@ -282,7 +282,6 @@ namespace drawinglayer double mfAngle; sal_uInt32 mnSteps; - /// bitfield bool mbDefinitionRangeEqualsOutputRange : 1; public: diff --git a/include/drawinglayer/texture/texture3d.hxx b/include/drawinglayer/texture/texture3d.hxx index adbc809262ac..72145ac3a461 100644 --- a/include/drawinglayer/texture/texture3d.hxx +++ b/include/drawinglayer/texture/texture3d.hxx @@ -68,7 +68,6 @@ namespace drawinglayer double mfMulX; double mfMulY; - /// bitfield bool mbIsAlpha : 1; bool mbIsTransparent : 1; @@ -98,7 +97,6 @@ namespace drawinglayer double mfOffsetX; double mfOffsetY; - /// bitfield bool mbUseOffsetX : 1; bool mbUseOffsetY : 1; @@ -131,7 +129,6 @@ namespace drawinglayer GeoTexSvxHatch* mp1; GeoTexSvxHatch* mp2; - // bitfield bool mbFillBackground : 1; // helpers diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx index 913f6f9f60b6..6b02e13a86cc 100644 --- a/include/editeng/outliner.hxx +++ b/include/editeng/outliner.hxx @@ -412,7 +412,6 @@ public: bool mbFilled; long mnWidthToFill; - // bitfield bool mbEndOfLine : 1; bool mbEndOfParagraph : 1; bool mbEndOfBullet : 1; diff --git a/include/svtools/valueset.hxx b/include/svtools/valueset.hxx index fabd2d500b21..432f410d80ca 100644 --- a/include/svtools/valueset.hxx +++ b/include/svtools/valueset.hxx @@ -225,7 +225,6 @@ private: Link<ValueSet*,void> maSelectHdl; Link<ValueSet*,void> maHighlightHdl; - // bitfield bool mbFormat : 1; bool mbHighlight : 1; bool mbSelection : 1; diff --git a/include/svx/dlgctl3d.hxx b/include/svx/dlgctl3d.hxx index 5c62d8b6f4ba..fa89bc436b98 100644 --- a/include/svx/dlgctl3d.hxx +++ b/include/svx/dlgctl3d.hxx @@ -90,7 +90,6 @@ class SAL_WARN_UNUSED SVX_DLLPUBLIC Svx3DLightControl : public Svx3DPreviewContr double mfSaveActionStartVer; double mfSaveActionStartRotZ; - // bitfield bool mbMouseMoved : 1; bool mbGeometrySelected : 1; diff --git a/include/svx/dlgctrl.hxx b/include/svx/dlgctrl.hxx index 36b9d0fd479c..9056efae0bdc 100644 --- a/include/svx/dlgctrl.hxx +++ b/include/svx/dlgctrl.hxx @@ -300,7 +300,6 @@ public: class SAL_WARN_UNUSED SVX_DLLPUBLIC LineLB : public ListBox { private: - /// bitfield /// defines if standard fields (none, solid) are added, default is true bool mbAddStandardFields : 1; diff --git a/include/svx/hdft.hxx b/include/svx/hdft.hxx index 92683859b543..1251685d5da0 100644 --- a/include/svx/hdft.hxx +++ b/include/svx/hdft.hxx @@ -88,7 +88,6 @@ protected: sal_uInt16 nId; SfxItemSet* pBBSet; - /// bitfield bool mbDisableQueryBox : 1; bool mbEnableDrawingLayerFillStyles : 1; diff --git a/include/svx/sdr/contact/displayinfo.hxx b/include/svx/sdr/contact/displayinfo.hxx index 7a00f143a392..e489294a8f81 100644 --- a/include/svx/sdr/contact/displayinfo.hxx +++ b/include/svx/sdr/contact/displayinfo.hxx @@ -38,7 +38,6 @@ namespace sdr // is empty, everything needs to be redrawn vcl::Region maRedrawArea; - // bitfield // Internal flag to know when the control layer is painted. Default is // false. If set to true, painting of the page, page borders and diff --git a/include/svx/sdr/contact/objectcontact.hxx b/include/svx/sdr/contact/objectcontact.hxx index e5fd0ed8c6da..d3ebcf0cd881 100644 --- a/include/svx/sdr/contact/objectcontact.hxx +++ b/include/svx/sdr/contact/objectcontact.hxx @@ -76,7 +76,6 @@ private: // the Primitive2DParameters containing view information drawinglayer::geometry::ViewInformation2D maViewInformation2D; - // bitfield // flag for preview renderer bool mbIsPreviewRenderer : 1; diff --git a/include/svx/sdr/contact/viewobjectcontact.hxx b/include/svx/sdr/contact/viewobjectcontact.hxx index e4253c5185fa..11ad3d80d622 100644 --- a/include/svx/sdr/contact/viewobjectcontact.hxx +++ b/include/svx/sdr/contact/viewobjectcontact.hxx @@ -57,7 +57,6 @@ private: // the PrimitiveAnimation if Primitive2DContainer contains animations sdr::animation::PrimitiveAnimation* mpPrimitiveAnimation; - // bitfield // This bool gets set when the object gets invalidated by ActionChanged() and // can be used from the OC to late-invalidates bool mbLazyInvalidate : 1; diff --git a/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx b/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx index eea4d4892fe9..20255ddd9dbc 100644 --- a/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx +++ b/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx @@ -48,7 +48,6 @@ namespace sdr double mfShearX; double mfRotation; - /// bitfield // Flag to remember which state to draw. Inited with false (0) bool mbOverlayState : 1; diff --git a/include/svx/sdr/overlay/overlayobject.hxx b/include/svx/sdr/overlay/overlayobject.hxx index 1130a6da65a5..35cb21956004 100644 --- a/include/svx/sdr/overlay/overlayobject.hxx +++ b/include/svx/sdr/overlay/overlayobject.hxx @@ -89,7 +89,6 @@ namespace sdr // base color of this OverlayObject Color maBaseColor; - // bitfield // Flag for visibility bool mbIsVisible : 1; diff --git a/include/svx/sdr/overlay/overlayselection.hxx b/include/svx/sdr/overlay/overlayselection.hxx index 4380e71e6848..b5ac1a8ca536 100644 --- a/include/svx/sdr/overlay/overlayselection.hxx +++ b/include/svx/sdr/overlay/overlayselection.hxx @@ -51,7 +51,6 @@ namespace sdr OverlayType maLastOverlayType; sal_uInt16 mnLastTransparence; - // bitfield bool mbBorder : 1; // geometry creation for OverlayObject, can use local *Last* values diff --git a/include/svx/sdrpaintwindow.hxx b/include/svx/sdrpaintwindow.hxx index a6ad7a0f9789..25c51c52563b 100644 --- a/include/svx/sdrpaintwindow.hxx +++ b/include/svx/sdrpaintwindow.hxx @@ -83,7 +83,6 @@ private: // The RedrawRegion used for rendering vcl::Region maRedrawRegion; - // bitfield // #i72889# flag if this is only a temporary target for repaint, default is false bool mbTemporaryTarget : 1; diff --git a/include/svx/sidebar/LinePropertyPanelBase.hxx b/include/svx/sidebar/LinePropertyPanelBase.hxx index a444a33d48fb..91d963221c8d 100644 --- a/include/svx/sidebar/LinePropertyPanelBase.hxx +++ b/include/svx/sidebar/LinePropertyPanelBase.hxx @@ -155,7 +155,6 @@ private: // multi-images std::unique_ptr<Image[]> mpIMGWidthIcon; - /// bitfield bool mbWidthValuable : 1; bool mbArrowSupported; diff --git a/include/svx/svddrgmt.hxx b/include/svx/svddrgmt.hxx index 4ed8150481e4..ab6bb5c59bc9 100644 --- a/include/svx/svddrgmt.hxx +++ b/include/svx/svddrgmt.hxx @@ -30,7 +30,6 @@ class SdrDragStat; class SVX_DLLPUBLIC SdrDragEntry { private: - // bitfield bool mbAddToTransparent : 1; protected: @@ -118,7 +117,6 @@ private: sdr::overlay::OverlayObjectList maOverlayObjectList; SdrDragView& mrSdrDragView; - // bitfield bool mbMoveOnly : 1; bool mbSolidDraggingActive : 1; bool mbShiftPressed : 1; diff --git a/include/svx/svdmark.hxx b/include/svx/svdmark.hxx index 225a0c4ba050..3ef24b35ef66 100644 --- a/include/svx/svdmark.hxx +++ b/include/svx/svdmark.hxx @@ -253,7 +253,6 @@ namespace sdr SdrMarkList maMarkedEdgesOfMarkedNodes; std::vector<SdrObject*> maAllMarkedObjects; - // bitfield bool mbEdgesOfMarkedNodesDirty : 1; SVX_DLLPRIVATE void ImpForceEdgesOfMarkedNodes(); diff --git a/include/svx/svdoedge.hxx b/include/svx/svdoedge.hxx index 374c51811e01..0851689c5971 100644 --- a/include/svx/svdoedge.hxx +++ b/include/svx/svdoedge.hxx @@ -50,7 +50,6 @@ protected: SdrObject* pObj; // Referenziertes Objekt sal_uInt16 nConId; // Konnektornummer - // bitfield bool bBestConn : 1; // sal_True= es wird der guenstigste Konnektor gesucht bool bBestVertex : 1; // sal_True= es wird der guenstigste Scheitelpunkt zum konnekten gesucht bool bAutoVertex : 1; // AutoConnector am Scheitelpunkt nCon @@ -161,7 +160,6 @@ protected: sal_uInt16 nNotifyingCount; // Verrieglung SdrEdgeInfoRec aEdgeInfo; - // bitfield bool bEdgeTrackDirty : 1; // sal_True=Verbindungsverlauf muss neu berechnet werden. bool bEdgeTrackUserDefined : 1; diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx index e5205feee39c..4dcf9b45d9df 100644 --- a/include/svx/svdpage.hxx +++ b/include/svx/svdpage.hxx @@ -426,7 +426,6 @@ protected: SetOfByte aPrefVisiLayers; sal_uInt16 nPageNum; - // bitfield bool mbMaster : 1; // flag if this is a MasterPage bool mbInserted : 1; bool mbObjectsNotPersistent : 1; diff --git a/include/svx/svdviter.hxx b/include/svx/svdviter.hxx index ecbc497008c5..7f903c440c73 100644 --- a/include/svx/svdviter.hxx +++ b/include/svx/svdviter.hxx @@ -70,7 +70,6 @@ class SVX_DLLPUBLIC SdrViewIter size_t mnListenerNum; - // bitfield bool mbNoMasterPage : 1; private: diff --git a/include/vcl/graph.hxx b/include/vcl/graph.hxx index 4bb1aa024a58..16053e66af79 100644 --- a/include/vcl/graph.hxx +++ b/include/vcl/graph.hxx @@ -78,7 +78,6 @@ class VCL_DLLPUBLIC GraphicConversionParameters private: Size maSizePixel; // default is (0,0) - // bitfield bool mbUnlimitedSize : 1; // default is false bool mbAntiAliase : 1; // default is false bool mbSnapHorVerLines : 1; // default is false diff --git a/include/vcl/lstbox.hxx b/include/vcl/lstbox.hxx index de111895601d..bba1eae5e576 100644 --- a/include/vcl/lstbox.hxx +++ b/include/vcl/lstbox.hxx @@ -85,7 +85,6 @@ private: Link<ListBox&,void> maDoubleClickHdl; sal_uInt16 mnLineCount; - /// bitfield bool mbDDAutoSize : 1; bool mbEdgeBlending : 1; diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index e7d7b1c72b08..56f449bde538 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -388,7 +388,6 @@ private: AntialiasingFlags mnAntialiasing; LanguageType meTextLanguage; - /// bitfield mutable bool mbMap : 1; mutable bool mbClipRegion : 1; mutable bool mbBackground : 1; diff --git a/include/vcl/region.hxx b/include/vcl/region.hxx index c169a615422c..45d12a88ebf1 100644 --- a/include/vcl/region.hxx +++ b/include/vcl/region.hxx @@ -56,7 +56,6 @@ private: std::shared_ptr< RegionBand > mpRegionBand; - /// bitfield bool mbIsNull : 1; // helpers diff --git a/sc/source/ui/sidebar/AlignmentPropertyPanel.hxx b/sc/source/ui/sidebar/AlignmentPropertyPanel.hxx index c5c0dea4f8a7..0eedc144ca8d 100644 --- a/sc/source/ui/sidebar/AlignmentPropertyPanel.hxx +++ b/sc/source/ui/sidebar/AlignmentPropertyPanel.hxx @@ -90,7 +90,6 @@ private: ::sfx2::sidebar::ControllerItem maVrtStackControl; ::sfx2::sidebar::ControllerItem maRefEdgeControl; - /// bitfield bool mbMultiDisable : 1; vcl::EnumContext maContext; diff --git a/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx b/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx index 1aefb2a06fb5..36441475b307 100644 --- a/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx +++ b/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx @@ -115,7 +115,6 @@ private: sal_uInt16 mnBLTROut; sal_uInt16 mnBLTRDis; - /// bitfield bool mbBorderStyleAvailable : 1; // CellBorder defines diff --git a/sc/source/ui/sidebar/CellLineStyleControl.hxx b/sc/source/ui/sidebar/CellLineStyleControl.hxx index 247d419bf410..165ea0e93e0e 100644 --- a/sc/source/ui/sidebar/CellLineStyleControl.hxx +++ b/sc/source/ui/sidebar/CellLineStyleControl.hxx @@ -35,7 +35,6 @@ private: VclPtr<CellLineStyleValueSet> maCellLineStyleValueSet; OUString maStr[CELL_LINE_STYLE_ENTRIES]; - /// bitfield bool mbVSfocus : 1; void Initialize(); diff --git a/svgio/inc/svgcharacternode.hxx b/svgio/inc/svgcharacternode.hxx index c06299904ba9..befa8f4dee22 100644 --- a/svgio/inc/svgcharacternode.hxx +++ b/svgio/inc/svgcharacternode.hxx @@ -38,7 +38,6 @@ namespace svgio SvgNumberVector maRotate; SvgNumber maTextLength; - /// bitfield bool mbLengthAdjust : 1; // true = spacing, false = spacingAndGlyphs public: @@ -97,7 +96,6 @@ namespace svgio // advancing rotation index sal_uInt32 mnRotationIndex; - /// bitfield bool mbLengthAdjust : 1; // true = spacing, false = spacingAndGlyphs bool mbAbsoluteX : 1; diff --git a/svgio/inc/svgmarkernode.hxx b/svgio/inc/svgmarkernode.hxx index 68cc68eedd52..96a0457720d6 100644 --- a/svgio/inc/svgmarkernode.hxx +++ b/svgio/inc/svgmarkernode.hxx @@ -53,7 +53,6 @@ namespace svgio SvgNumber maMarkerHeight; double mfAngle; - /// bitfield bool mbOrientAuto : 1; // true == on, false == fAngle valid public: diff --git a/svgio/inc/svgnode.hxx b/svgio/inc/svgnode.hxx index 65be1f391db4..7a5b86f130c2 100644 --- a/svgio/inc/svgnode.hxx +++ b/svgio/inc/svgnode.hxx @@ -113,7 +113,6 @@ namespace svgio /// possible local CssStyle, e.g. style="fill:red; stroke:red;" SvgStyleAttributes* mpLocalCssStyle; - /// bitfield // flag if maCssStyleVector is already computed (done only once) bool mbCssStyleVectorBuilt : 1; diff --git a/svgio/inc/svgpaint.hxx b/svgio/inc/svgpaint.hxx index 367f801260fa..7f442ce26974 100644 --- a/svgio/inc/svgpaint.hxx +++ b/svgio/inc/svgpaint.hxx @@ -31,7 +31,6 @@ namespace svgio private: basegfx::BColor maColor; - /// bitfield bool mbSet : 1; bool mbOn : 1; bool mbCurrent : 1; diff --git a/svgio/inc/svgpolynode.hxx b/svgio/inc/svgpolynode.hxx index 6c9a605ee2fb..e4afb25224c9 100644 --- a/svgio/inc/svgpolynode.hxx +++ b/svgio/inc/svgpolynode.hxx @@ -38,7 +38,6 @@ namespace svgio basegfx::B2DPolygon* mpPolygon; basegfx::B2DHomMatrix* mpaTransform; - /// bitfield bool mbIsPolyline : 1; // true = polyline, false = polygon public: diff --git a/svgio/inc/svgstyleattributes.hxx b/svgio/inc/svgstyleattributes.hxx index d0bc8cb6f526..e69affe949e6 100644 --- a/svgio/inc/svgstyleattributes.hxx +++ b/svgio/inc/svgstyleattributes.hxx @@ -239,7 +239,6 @@ namespace svgio BaselineShift maBaselineShift; SvgNumber maBaselineShiftNumber; - /// bitfield // defines if this attributes are part of a ClipPath. If yes, // rough geometry will be created on decomposition by patching diff --git a/svgio/inc/svgstylenode.hxx b/svgio/inc/svgstylenode.hxx index 86809e23f394..a918e685c25d 100644 --- a/svgio/inc/svgstylenode.hxx +++ b/svgio/inc/svgstylenode.hxx @@ -33,7 +33,6 @@ namespace svgio /// use styles std::vector< SvgStyleAttributes* > maSvgStyleAttributes; - /// bitfield bool mbTextCss : 1; // true == type is 'text/css' public: diff --git a/svgio/inc/svgtextpathnode.hxx b/svgio/inc/svgtextpathnode.hxx index 2c974856d6a5..1981180f63b8 100644 --- a/svgio/inc/svgtextpathnode.hxx +++ b/svgio/inc/svgtextpathnode.hxx @@ -41,7 +41,6 @@ namespace svgio /// variable scan values, dependent of given XAttributeList SvgNumber maStartOffset; - /// bitfield bool mbMethod : 1; // true = align, false = stretch bool mbSpacing : 1; // true = auto, false = exact diff --git a/svgio/inc/svgtools.hxx b/svgio/inc/svgtools.hxx index c00f0784c481..cc4a1da908c4 100644 --- a/svgio/inc/svgtools.hxx +++ b/svgio/inc/svgtools.hxx @@ -93,7 +93,6 @@ namespace svgio double mfNumber; SvgUnit meUnit; - /// bitfield bool mbSet : 1; public: @@ -157,7 +156,6 @@ namespace svgio private: SvgAlign maSvgAlign; - /// bitfield bool mbMeetOrSlice : 1; // true = meet (default), false = slice bool mbSet : 1; diff --git a/svx/inc/sdr/contact/viewcontactofsdrpage.hxx b/svx/inc/sdr/contact/viewcontactofsdrpage.hxx index d811b96abbd0..9ff6cfa65828 100644 --- a/svx/inc/sdr/contact/viewcontactofsdrpage.hxx +++ b/svx/inc/sdr/contact/viewcontactofsdrpage.hxx @@ -132,7 +132,6 @@ public: class ViewContactOfGrid : public ViewContactOfPageSubObject { protected: - // bitfield bool mbFront : 1; virtual ViewObjectContact& CreateObjectSpecificViewObjectContact(ObjectContact& rObjectContact) override; @@ -148,7 +147,6 @@ public: class ViewContactOfHelplines : public ViewContactOfPageSubObject { protected: - // bitfield bool mbFront : 1; virtual ViewObjectContact& CreateObjectSpecificViewObjectContact(ObjectContact& rObjectContact) override; diff --git a/svx/inc/sdr/overlay/overlaymanagerbuffered.hxx b/svx/inc/sdr/overlay/overlaymanagerbuffered.hxx index 3ef4a6eb1f2f..5eae9d6cb599 100644 --- a/svx/inc/sdr/overlay/overlaymanagerbuffered.hxx +++ b/svx/inc/sdr/overlay/overlaymanagerbuffered.hxx @@ -47,7 +47,6 @@ namespace sdr // Range for buffering (in pixel to be independent from mapMode) basegfx::B2IRange maBufferRememberedRangePixel; - // bitfield // Flag to decide if PreRendering shall be used for overlay refreshes. // Default is false. bool mbRefreshWithPreRendering : 1; diff --git a/svx/inc/sdr/overlay/overlayrectangle.hxx b/svx/inc/sdr/overlay/overlayrectangle.hxx index 4531c08baad0..640a1f9ba0e1 100644 --- a/svx/inc/sdr/overlay/overlayrectangle.hxx +++ b/svx/inc/sdr/overlay/overlayrectangle.hxx @@ -40,7 +40,6 @@ namespace sdr // #i53216# added CursorBlinkTime (in ms) sal_uInt32 mnBlinkTime; - /// bitfield // Flag to remember which state to draw. Inited with false (0) bool mbOverlayState : 1; diff --git a/svx/inc/sdr/overlay/overlayrollingrectangle.hxx b/svx/inc/sdr/overlay/overlayrollingrectangle.hxx index 79256d9f581b..de6d320ceb90 100644 --- a/svx/inc/sdr/overlay/overlayrollingrectangle.hxx +++ b/svx/inc/sdr/overlay/overlayrollingrectangle.hxx @@ -33,7 +33,6 @@ namespace sdr // second position in pixel basegfx::B2DPoint maSecondPosition; - // bitfield // Flag to switch on/off long lines to the OutputDevice bounds bool mbExtendedLines : 1; diff --git a/svx/inc/sdr/primitive2d/sdrcustomshapeprimitive2d.hxx b/svx/inc/sdr/primitive2d/sdrcustomshapeprimitive2d.hxx index 9c2046440358..8697e1931ba1 100644 --- a/svx/inc/sdr/primitive2d/sdrcustomshapeprimitive2d.hxx +++ b/svx/inc/sdr/primitive2d/sdrcustomshapeprimitive2d.hxx @@ -39,7 +39,6 @@ namespace drawinglayer Primitive2DContainer maSubPrimitives; basegfx::B2DHomMatrix maTextBox; - // bitfield // defines if SdrTextWordWrapItem was set at SdrObjCustomShape which means // that the text needs to be block formatted bool mbWordWrap : 1; diff --git a/svx/inc/sdr/primitive2d/sdrellipseprimitive2d.hxx b/svx/inc/sdr/primitive2d/sdrellipseprimitive2d.hxx index 1a9159de321c..942c7026b0c2 100644 --- a/svx/inc/sdr/primitive2d/sdrellipseprimitive2d.hxx +++ b/svx/inc/sdr/primitive2d/sdrellipseprimitive2d.hxx @@ -71,7 +71,6 @@ namespace drawinglayer double mfStartAngle; double mfEndAngle; - // bitfield bool mbCloseSegment : 1; bool mbCloseUsingCenter : 1; diff --git a/svx/inc/sdr/primitive2d/sdrmeasureprimitive2d.hxx b/svx/inc/sdr/primitive2d/sdrmeasureprimitive2d.hxx index 0ed76d27986c..70d669275202 100644 --- a/svx/inc/sdr/primitive2d/sdrmeasureprimitive2d.hxx +++ b/svx/inc/sdr/primitive2d/sdrmeasureprimitive2d.hxx @@ -59,7 +59,6 @@ namespace drawinglayer double mfLeftDelta; double mfRightDelta; - // bitfield bool mbBelow : 1; bool mbTextRotation : 1; bool mbTextAutoAngle : 1; diff --git a/svx/inc/sdr/primitive2d/sdrrectangleprimitive2d.hxx b/svx/inc/sdr/primitive2d/sdrrectangleprimitive2d.hxx index f7650945cc92..dc2411ca8c88 100644 --- a/svx/inc/sdr/primitive2d/sdrrectangleprimitive2d.hxx +++ b/svx/inc/sdr/primitive2d/sdrrectangleprimitive2d.hxx @@ -40,7 +40,6 @@ namespace drawinglayer double mfCornerRadiusX; // [0.0..1.0] relative to 1/2 width double mfCornerRadiusY; // [0.0..1.0] relative to 1/2 height - // bitfield // flag which decides if the HitArea should be the filled geometry bool mbForceFillForHitTest : 1; diff --git a/svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx b/svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx index 73f16012eb72..9346f5d7e02f 100644 --- a/svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx +++ b/svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx @@ -69,7 +69,6 @@ namespace drawinglayer // needed because of background color change Color maLastTextBackgroundColor; - // bitfield // is there a PageNumber, Header, Footer or DateTimeField used? Evaluated at construction bool mbContainsPageField : 1; bool mbContainsPageCountField : 1; @@ -198,7 +197,6 @@ namespace drawinglayer SdrTextHorzAdjust maSdrTextHorzAdjust; SdrTextVertAdjust maSdrTextVertAdjust; - // bitfield bool mbFixedCellHeight : 1; bool mbUnlimitedPage : 1; // force layout with no text break bool mbCellText : 1; // this is a cell text as block text @@ -255,7 +253,6 @@ namespace drawinglayer // text range transformation from unit range ([0.0 .. 1.0]) to text range basegfx::B2DHomMatrix maTextRangeTransform; - // bitfield bool mbFixedCellHeight : 1; protected: @@ -295,7 +292,6 @@ namespace drawinglayer private: ::basegfx::B2DHomMatrix maTextRangeTransform; // text range transformation from unit range ([0.0 .. 1.0]) to text range - // bitfield bool mbWordWrap : 1; // for CustomShapes text layout protected: diff --git a/svx/source/dialog/hdft.cxx b/svx/source/dialog/hdft.cxx index 55b209457f6b..026780ea3307 100644 --- a/svx/source/dialog/hdft.cxx +++ b/svx/source/dialog/hdft.cxx @@ -147,7 +147,6 @@ SvxHFPage::SvxHFPage( vcl::Window* pParent, const SfxItemSet& rSet, sal_uInt16 n SfxTabPage(pParent, "HFFormatPage", "svx/ui/headfootformatpage.ui", &rSet), nId(nSetId), pBBSet(nullptr), - // bitfield mbDisableQueryBox(false), mbEnableDrawingLayerFillStyles(false) { diff --git a/svx/source/sdr/attribute/sdrformtextattribute.cxx b/svx/source/sdr/attribute/sdrformtextattribute.cxx index 2f245f12e2c7..5325ca00fac5 100644 --- a/svx/source/sdr/attribute/sdrformtextattribute.cxx +++ b/svx/source/sdr/attribute/sdrformtextattribute.cxx @@ -163,7 +163,6 @@ namespace drawinglayer SdrFormTextOutlineAttribute maOutline; SdrFormTextOutlineAttribute maShadowOutline; - // bitfield bool mbFormTextMirror : 1; // change orientation bool mbFormTextOutline : 1; // show contour of objects diff --git a/svx/source/sdr/attribute/sdrtextattribute.cxx b/svx/source/sdr/attribute/sdrtextattribute.cxx index 7b9c5daf159a..b0d347f0c86e 100644 --- a/svx/source/sdr/attribute/sdrtextattribute.cxx +++ b/svx/source/sdr/attribute/sdrtextattribute.cxx @@ -56,7 +56,6 @@ namespace drawinglayer SdrTextHorzAdjust maSdrTextHorzAdjust; SdrTextVertAdjust maSdrTextVertAdjust; - // bitfield bool mbContour : 1; bool mbFitToSize : 1; bool mbAutoFit : 1; diff --git a/svx/source/sdr/contact/viewobjectcontact.cxx b/svx/source/sdr/contact/viewobjectcontact.cxx index 029abbcfae02..230a2940577b 100644 --- a/svx/source/sdr/contact/viewobjectcontact.cxx +++ b/svx/source/sdr/contact/viewobjectcontact.cxx @@ -58,7 +58,6 @@ protected: // the found animated primitives drawinglayer::primitive2d::Primitive2DContainer maPrimitive2DSequence; - // bitfield // text animation allowed? bool mbTextAnimationAllowed : 1; diff --git a/svx/source/sidebar/possize/PosSizePropertyPanel.hxx b/svx/source/sidebar/possize/PosSizePropertyPanel.hxx index 4aa94750efcc..f514df21d7f5 100644 --- a/svx/source/sidebar/possize/PosSizePropertyPanel.hxx +++ b/svx/source/sidebar/possize/PosSizePropertyPanel.hxx @@ -138,7 +138,6 @@ private: vcl::EnumContext maContext; SfxBindings* mpBindings; - /// bitfield bool mbSizeProtected : 1; bool mbPositionProtected : 1; bool mbAutoWidth : 1; diff --git a/svx/source/svdraw/svdmrkv.cxx b/svx/source/svdraw/svdmrkv.cxx index 526b6e81187a..eb14f29fc25c 100644 --- a/svx/source/svdraw/svdmrkv.cxx +++ b/svx/source/svdraw/svdmrkv.cxx @@ -68,7 +68,6 @@ class ImplMarkingOverlay // The remembered second position in logical coordinates basegfx::B2DPoint maSecondPosition; - // bitfield // A flag to remember if the action is for unmarking. bool mbUnmarking : 1; diff --git a/svx/source/svdraw/svdotextpathdecomposition.cxx b/svx/source/svdraw/svdotextpathdecomposition.cxx index d0bcac13ca6f..dca4e230da67 100644 --- a/svx/source/svdraw/svdotextpathdecomposition.cxx +++ b/svx/source/svdraw/svdotextpathdecomposition.cxx @@ -78,7 +78,6 @@ namespace ::std::vector< double > maDblDXArray; // double DXArray, font size independent -> unit coordinate system css::lang::Locale maLocale; - // bitfield bool mbRTL : 1; public: diff --git a/svx/source/table/tablehandles.hxx b/svx/source/table/tablehandles.hxx index 16b159732825..48f0f679008e 100644 --- a/svx/source/table/tablehandles.hxx +++ b/svx/source/table/tablehandles.hxx @@ -83,7 +83,6 @@ protected: private: Rectangle maRectangle; - /// bitfield bool mbAnimate : 1; }; diff --git a/svx/source/table/viewcontactoftableobj.cxx b/svx/source/table/viewcontactoftableobj.cxx index b181998ef530..c97192b19339 100644 --- a/svx/source/table/viewcontactoftableobj.cxx +++ b/svx/source/table/viewcontactoftableobj.cxx @@ -169,7 +169,6 @@ namespace drawinglayer SvxBorderLine maBottomFromLLine; SvxBorderLine maBottomFromRLine; - // bitfield bool mbLeftIsOutside : 1; bool mbBottomIsOutside : 1; bool mbRightIsOutside : 1; diff --git a/sw/source/uibase/docvw/AnchorOverlayObject.cxx b/sw/source/uibase/docvw/AnchorOverlayObject.cxx index 850228e6cf3b..5d6a2ad1df9b 100644 --- a/sw/source/uibase/docvw/AnchorOverlayObject.cxx +++ b/sw/source/uibase/docvw/AnchorOverlayObject.cxx @@ -47,7 +47,6 @@ private: // discrete line width double mfDiscreteLineWidth; - // bitfield bool mbLineSolid : 1; protected: diff --git a/ucb/source/ucp/webdav/webdavresponseparser.cxx b/ucb/source/ucp/webdav/webdavresponseparser.cxx index 6c97031be6b9..f666d8686a63 100644 --- a/ucb/source/ucp/webdav/webdavresponseparser.cxx +++ b/ucb/source/ucp/webdav/webdavresponseparser.cxx @@ -307,7 +307,6 @@ namespace ucb::Lock maLock; WebDAVResponseParserMode meWebDAVResponseParserMode; - // bitfield bool mbResourceTypeCollection : 1; bool mbLockScopeSet : 1; bool mbLockTypeSet : 1; diff --git a/vcl/inc/listbox.hxx b/vcl/inc/listbox.hxx index 0ce452ef6081..ce3758093d55 100644 --- a/vcl/inc/listbox.hxx +++ b/vcl/inc/listbox.hxx @@ -194,7 +194,6 @@ private: sal_uInt16 mnSelectModifier; ///< Modifiers - /// bitfield bool mbHasFocusRect : 1; bool mbSort : 1; ///< ListBox sorted bool mbTrack : 1; ///< Tracking @@ -362,7 +361,6 @@ private: VclPtr<ScrollBar> mpVScrollBar; VclPtr<ScrollBarBox> mpScrollBarBox; - /// bitfield bool mbVScroll : 1; // VScroll an oder aus bool mbHScroll : 1; // HScroll an oder aus bool mbAutoHScroll : 1; // AutoHScroll an oder aus @@ -523,7 +521,6 @@ private: Link<void*,void> maMBDownHdl; Link<UserDrawEvent*, void> maUserDrawHdl; - /// bitfield bool mbUserDrawEnabled : 1; bool mbInUserDraw : 1; bool mbEdgeBlending : 1; diff --git a/vcl/inc/regband.hxx b/vcl/inc/regband.hxx index f74f837a62e6..7c1785e98365 100644 --- a/vcl/inc/regband.hxx +++ b/vcl/inc/regband.hxx @@ -64,7 +64,6 @@ public: long mnYTop; // actual boundary of the band long mnYBottom; - // bitfield bool mbTouched : 1; // create y-band with boundaries |