diff options
author | Gergely Tarsoly <g.tarsoly@yahoo.com> | 2017-12-13 18:57:19 +0100 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2017-12-14 01:24:36 +0100 |
commit | 6df6c576cae880a1645f6a0514a1e10e99cac2f7 (patch) | |
tree | 088083c17884a965f969cf06fbab64d1292452c4 /cui | |
parent | 8d0e6ad024f3154115bc39f9db4cec3a6afc59c4 (diff) |
Minor fix: unused local variable
Change-Id: I42db2c6fd90686641cd6c2f7f45d960977557ab4
Reviewed-on: https://gerrit.libreoffice.org/46416
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Tested-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/tphatch.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/tabpages/tphatch.cxx b/cui/source/tabpages/tphatch.cxx index 922418d8c358..c3e5097fc916 100644 --- a/cui/source/tabpages/tphatch.cxx +++ b/cui/source/tabpages/tphatch.cxx @@ -336,7 +336,7 @@ IMPL_LINK_NOARG( SvxHatchTabPage, ModifiedBackgroundHdl_Impl, SvxColorListBox&, m_pCtlPreview->SetAttributes( m_aXFillAttr.GetItemSet() ); m_pCtlPreview->Invalidate(); } - m_rXFSet.Put(XFillColorItem( OUString(), m_pLbBackgroundColor->GetSelectEntryColor() )); + m_rXFSet.Put(XFillColorItem( OUString(), aColor )); m_pCtlPreview->SetAttributes( m_aXFillAttr.GetItemSet() ); m_pCtlPreview->Invalidate(); |