summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-19 16:43:09 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-19 16:53:15 +0000
commitd9568be3afbea59b366d4cc9b9cbf9aabfa118f9 (patch)
treedf9b1f909dc2239ae6f4e163ce92d5f165a3d8fc /sd
parent4db1cdd41cc4ed996c51e382313325e0db531a75 (diff)
coverity#738826 Uninitialized scalar field
Change-Id: Ib76b31ffb4c9708dc5f5d219c7a861a32f8851ff
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/slideshow/slideshowimpl.cxx1
-rw-r--r--sd/source/ui/slideshow/slideshowimpl.hxx1
2 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx b/sd/source/ui/slideshow/slideshowimpl.cxx
index a047e439ae9b..54c4c0204bde 100644
--- a/sd/source/ui/slideshow/slideshowimpl.cxx
+++ b/sd/source/ui/slideshow/slideshowimpl.cxx
@@ -521,6 +521,7 @@ SlideshowImpl::SlideshowImpl( const Reference< XPresentation2 >& xPresentation,
, mbRehearseTimings(false)
, mbDesignMode(false)
, mbIsPaused(false)
+, mbWasPaused(false)
, mbInputFreeze(false)
, mbActive(sal_False)
, maPresSettings( pDoc->getPresentationSettings() )
diff --git a/sd/source/ui/slideshow/slideshowimpl.hxx b/sd/source/ui/slideshow/slideshowimpl.hxx
index 1b3f5d577c38..d4eeabb5fbe1 100644
--- a/sd/source/ui/slideshow/slideshowimpl.hxx
+++ b/sd/source/ui/slideshow/slideshowimpl.hxx
@@ -369,7 +369,6 @@ private:
bool mbSlideBorderVisible;
bool mbSetOnlineSpelling;
bool mbDisposed;
- bool mbMouseIsDrawing;
bool mbAutoSaveWasOn;
bool mbRehearseTimings;
bool mbDesignMode;