summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-11-17 16:02:17 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-11-18 07:41:09 +0100
commit1d097883541b9d244e50ced7fe49a4d7a0f65cfd (patch)
tree56e1b707bff7251491f8f09fdcfc82492b3e415f /svx
parent6d24213d55df33c7bb5f10d511dcfc82b745db38 (diff)
tdf#113855 Assertion while customizing Bullets and Numbering
can't find an easy way of removing the duplication, even though that BeginLocking() stuff looks ripe for simplification. Change-Id: I97b580b3668381c12b62136ea09772d91ab11eac Reviewed-on: https://gerrit.libreoffice.org/44884 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/gallery2/gallery1.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/gallery2/gallery1.cxx b/svx/source/gallery2/gallery1.cxx
index c089ba034e44..c3d32d6f1971 100644
--- a/svx/source/gallery2/gallery1.cxx
+++ b/svx/source/gallery2/gallery1.cxx
@@ -763,7 +763,7 @@ GalleryTheme* Gallery::AcquireTheme( const OUString& rThemeName, SfxListener& rL
GalleryThemeEntry* pThemeEntry = ImplGetThemeEntry( rThemeName );
if( pThemeEntry && ( ( pTheme = ImplGetCachedTheme( pThemeEntry ) ) != nullptr ) )
- rListener.StartListening( *pTheme );
+ rListener.StartListening( *pTheme, true );
return pTheme;
}