summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-11 11:25:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-11 14:11:19 +0100
commitd730fd358e0890174358002ac147a0168e873f93 (patch)
treefb9ab43e41d76b4a4b5e50fb47bf093ef86b1ca0 /svx
parent68242e8c299b721f6e8e25608fab1fba4d011c96 (diff)
coverity#708359 Uninitialized scalar field
Change-Id: Ic65d9682fa145198c6ce663dc655d56570388638
Diffstat (limited to 'svx')
-rw-r--r--svx/source/gallery2/galtheme.cxx17
1 files changed, 9 insertions, 8 deletions
diff --git a/svx/source/gallery2/galtheme.cxx b/svx/source/gallery2/galtheme.cxx
index 2650811a01e7..6a9a3178688f 100644
--- a/svx/source/gallery2/galtheme.cxx
+++ b/svx/source/gallery2/galtheme.cxx
@@ -60,15 +60,16 @@ using namespace ::com::sun::star;
// - SgaTheme -
-GalleryTheme::GalleryTheme( Gallery* pGallery, GalleryThemeEntry* pThemeEntry ) :
- pParent ( pGallery ),
- pThm ( pThemeEntry ),
- mnThemeLockCount ( 0 ),
- mnBroadcasterLockCount( 0 ),
- nDragPos ( 0 ),
- bDragging ( false )
+GalleryTheme::GalleryTheme( Gallery* pGallery, GalleryThemeEntry* pThemeEntry )
+ : m_bDestDirRelative(false)
+ , pParent(pGallery)
+ , pThm(pThemeEntry)
+ , mnThemeLockCount(0)
+ , mnBroadcasterLockCount(0)
+ , nDragPos(0)
+ , bDragging(false)
+ , bAbortActualize(false)
{
-
ImplCreateSvDrawStorage();
}