sw/source/core/inc/frame.hxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-)
New commits: commit deaf1d56dabe71c7373648d10202c1ad382aa957 Author: Mike Kaganski <mike.kagan...@collabora.com> AuthorDate: Sat Jun 21 17:22:23 2025 +0500 Commit: Mike Kaganski <mike.kagan...@collabora.com> CommitDate: Sat Jun 21 16:27:57 2025 +0200 Make SwFrameAreaDefinition's *Valid flags simple bools, not a bitset Helps putting a watchpoint (at least Visual Studio debugger cannot put a watchpoint for a bitset field - it needs a memory address). Change-Id: Ic634719fbfe7d3abb0ee222c48198eabec25c49d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186778 Reviewed-by: Mike Kaganski <mike.kagan...@collabora.com> Tested-by: Jenkins diff --git a/sw/source/core/inc/frame.hxx b/sw/source/core/inc/frame.hxx index 2b07ee1f0af4..4fb8793c7237 100644 --- a/sw/source/core/inc/frame.hxx +++ b/sw/source/core/inc/frame.hxx @@ -145,10 +145,9 @@ private: sal_uInt32 mnFrameId; - // bitfield - bool mbFrameAreaPositionValid : 1; - bool mbFrameAreaSizeValid : 1; - bool mbFramePrintAreaValid : 1; + bool mbFrameAreaPositionValid; + bool mbFrameAreaSizeValid; + bool mbFramePrintAreaValid; // #i65250# // frame ID is now in general available - used for layout loop control