summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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();
}