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

coverity#708132 Uninitialized scalar field

Change-Id: I24496262cc2101e47b83878dc0c7cef963471a5c
üst f50b76ae
...@@ -74,21 +74,20 @@ TYPEINIT1( FuDraw, FuPoor ); ...@@ -74,21 +74,20 @@ TYPEINIT1( FuDraw, FuPoor );
* Base-class for all drawmodul-specific functions * Base-class for all drawmodul-specific functions
*/ */
FuDraw::FuDraw(ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, FuDraw::FuDraw(ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView,
SdDrawDocument* pDoc, SfxRequest& rReq) : SdDrawDocument* pDoc, SfxRequest& rReq)
FuPoor(pViewSh, pWin, pView, pDoc, rReq), : FuPoor(pViewSh, pWin, pView, pDoc, rReq)
bMBDown(sal_False), , bMBDown(sal_False)
bDragHelpLine(sal_False), , bDragHelpLine(sal_False)
bPermanent(sal_False) , nHelpLine(0)
, bPermanent(sal_False)
{ {
} }
FuDraw::~FuDraw() FuDraw::~FuDraw()
{ {
mpView->BrkAction(); mpView->BrkAction();
} }
sal_Bool FuDraw::MouseButtonDown(const MouseEvent& rMEvt) sal_Bool FuDraw::MouseButtonDown(const MouseEvent& rMEvt)
{ {
// remember button state for creation of own MouseEvents // remember button state for creation of own MouseEvents
......
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