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

coverity#708524 Uninitialized pointer field

Change-Id: I35c3e88d6dedabb58cc3e3831e2dbe53eba27959
üst 63c1ea7b
......@@ -73,8 +73,10 @@ SFX_IMPL_INTERFACE(SwDrawBaseShell, SwBaseShell, SW_RES(0))
TYPEINIT1(SwDrawBaseShell,SwBaseShell)
SwDrawBaseShell::SwDrawBaseShell(SwView &_rView):
SwBaseShell( _rView )
SwDrawBaseShell::SwDrawBaseShell(SwView &_rView)
: SwBaseShell(_rView)
, pDrawActual(0)
, eDrawMode(0)
{
GetShell().NoEdit(true);
......
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