summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorKatarina Behrens <Katarina.Behrens@cib.de>2018-03-30 18:08:50 +0200
committerKatarina Behrens <Katarina.Behrens@cib.de>2018-04-07 19:57:00 +0200
commitb85691995e7b1a1aadf714c34e7fe6b9cd3206d8 (patch)
treefc7648919a3c9cbb2cc21f3128c5c049909aaf89 /cui
parentd2e547c82dd23eabfec7a828c5b9fed16313b1c4 (diff)
Pass full item set to bitmap tabpages
Change-Id: I5d72b582f98538fdf5efe40bfca686dc0cdfc013 Reviewed-on: https://gerrit.libreoffice.org/52364 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/tabpages/tparea.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/cui/source/tabpages/tparea.cxx b/cui/source/tabpages/tparea.cxx
index 80aa95d26df5..62e5ccd58594 100644
--- a/cui/source/tabpages/tparea.cxx
+++ b/cui/source/tabpages/tparea.cxx
@@ -205,7 +205,8 @@ void SvxAreaTabPage::ActivatePage( const SfxItemSet& rSet )
case drawing::FillStyle_BITMAP:
{
XFillBitmapItem aItem(static_cast<const XFillBitmapItem&>( rSet.Get( GetWhich( XATTR_FILLBITMAP ) ) ));
- m_rXFSet.Put( aItem );
+ // pass full item set here, bitmap fill has many attributes (tiling, size, offset etc.)
+ m_rXFSet.Put( rSet );
if(!aItem.isPattern())
SelectFillTypeHdl_Impl( m_pBtnBitmap );
else