diff options
author | Oliver Specht <oliver.specht@cib.de> | 2015-12-11 15:36:57 +0100 |
---|---|---|
committer | Oliver Specht <oliver.specht@cib.de> | 2015-12-12 14:00:39 +0000 |
commit | 8045b87609409c944e3e89e7e11c00822a214512 (patch) | |
tree | 5f5b78db27ac0c85d928a63b706449d3ea642ef3 /svtools | |
parent | 917d59a84124d1022bd1912874e7a53c674784f1 (diff) |
tdf#36722: Enable footnote separator line style NONE
adds detection of css::table::BorderLineStyle::NONE
to the LineListBox and stops painting NONE style lines
Change-Id: Ib24fa25a9e3e3ae685f2000685f01cae42d1653f
Reviewed-on: https://gerrit.libreoffice.org/20639
Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Tested-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/ctrlbox.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/svtools/source/control/ctrlbox.cxx b/svtools/source/control/ctrlbox.cxx index 450fb4de2760..69816b720c43 100644 --- a/svtools/source/control/ctrlbox.cxx +++ b/svtools/source/control/ctrlbox.cxx @@ -803,6 +803,8 @@ void LineListBox::InsertEntry( sal_Int32 LineListBox::GetEntryPos( sal_uInt16 nStyle ) const { + if(nStyle == css::table::BorderLineStyle::NONE && !m_sNone.isEmpty()) + return 0; for ( size_t i = 0, n = pLineList->size(); i < n; ++i ) { ImpLineListData* pData = (*pLineList)[ i ]; if ( pData ) |