Kaydet (Commit) a774c466 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708522 Uninitialized scalar field

Change-Id: I1396d5f2f042e5500b61dc578a8d5089374fa8f8
üst 055eb8ed
......@@ -38,10 +38,11 @@
ConstRectangle::ConstRectangle( SwWrtShell* pWrtShell, SwEditWin* pEditWin,
SwView* pSwView )
: SwDrawBase( pWrtShell, pEditWin, pSwView ),
bMarquee(false),
: SwDrawBase( pWrtShell, pEditWin, pSwView )
, bMarquee(false)
, bCapVertical(false)
// #93382#
mbVertical(false)
, mbVertical(false)
{
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment