diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-09-14 14:43:07 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-09-17 10:02:23 +0200 |
commit | 2419fa71d8b2223a50f596d5db7721f6213d4f87 (patch) | |
tree | 5e85620bd2b8087d60649e6cb6da269e737f5fcf /sfx2 | |
parent | 35109fe7c058cf6d961245fc24550d1c1d39a300 (diff) |
add image support to weld::ComboBoxText
Change-Id: Ie7f00ed4aef5318a525a526d0377bb7952bdd5a0
Reviewed-on: https://gerrit.libreoffice.org/60499
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/mgetempl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/dialog/mgetempl.cxx b/sfx2/source/dialog/mgetempl.cxx index b878329bcf63..980f7dda4abc 100644 --- a/sfx2/source/dialog/mgetempl.cxx +++ b/sfx2/source/dialog/mgetempl.cxx @@ -200,7 +200,7 @@ SfxManageStyleSheetPage::SfxManageStyleSheetPage(TabPageParent pParent, const Sf rTupel.nFlags != SfxStyleSearchBits::AllVisible && rTupel.nFlags != SfxStyleSearchBits::All ) { - m_xFilterLb->insert(nIdx, OUString::number(i), rTupel.aName); + m_xFilterLb->insert(nIdx, OUString::number(i), rTupel.aName, nullptr); if ( ( rTupel.nFlags & nMask ) == nMask ) nStyleFilterIdx = nIdx; ++nIdx; |