sw/source/uibase/misc/swruler.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit 5f7496ddce65f20a09807a394ae986905b999698 Author: Caolán McNamara <[email protected]> AuthorDate: Sat Jan 13 18:56:18 2024 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Sat Jan 13 21:40:34 2024 +0100 cid#1585308 Uninitialized scalar field Change-Id: Ia10f386a0ddb84dd1e3f8dd018cc5744185f0665 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162020 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/sw/source/uibase/misc/swruler.cxx b/sw/source/uibase/misc/swruler.cxx index aeed7ea677c5..7d9f6f1aba84 100644 --- a/sw/source/uibase/misc/swruler.cxx +++ b/sw/source/uibase/misc/swruler.cxx @@ -85,6 +85,7 @@ SwCommentRuler::SwCommentRuler(SwViewShell* pViewSh, vcl::Window* pParent, SwEdi : SvxRuler(pParent, pWin, nRulerFlags, rBindings, nWinStyle | WB_HSCROLL) , mpViewShell(pViewSh) , mpSwWin(pWin) + , mbIsDrag(false) , mbIsHighlighted(false) , maFadeTimer("sw::SwCommentRuler maFadeTimer") , mnFadeRate(0)
