diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 13:24:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-07 13:47:04 +0100 |
commit | 867fdeaac288b11bced0e921ad5e443d27f99237 (patch) | |
tree | d04e3f5982fdc56e613fc024b13efbd9ed5b07e1 /sd | |
parent | 2ae814b4152438571dfcedc42a4c1bcebae785c6 (diff) |
coverity#708137 Uninitialized scalar field
Change-Id: I27966ee56ceac9a82fe901e942540c8e5d9c93dc
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx b/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx index 68514fbe4108..b2c66b284ec0 100644 --- a/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx +++ b/sd/source/ui/slidesorter/controller/SlsInsertionIndicatorHandler.cxx @@ -40,6 +40,7 @@ InsertionIndicatorHandler::InsertionIndicatorHandler (SlideSorter& rSlideSorter) mpInsertionIndicatorOverlay(new view::InsertionIndicatorOverlay(rSlideSorter)), maInsertPosition(), meMode(MoveMode), + mbIsInsertionTrivial(false), mbIsActive(false), mbIsReadOnly(mrSlideSorter.GetModel().IsReadOnly()), mbIsOverSourceView(true), |