summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ww8')
-rw-r--r--sw/source/filter/ww8/rtfexport.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/sw/source/filter/ww8/rtfexport.cxx b/sw/source/filter/ww8/rtfexport.cxx
index e39b18e01266..ffc60d8849de 100644
--- a/sw/source/filter/ww8/rtfexport.cxx
+++ b/sw/source/filter/ww8/rtfexport.cxx
@@ -45,6 +45,7 @@
#if OSL_DEBUG_LEVEL > 1
#include <iostream>
#endif
+#include <svx/xflclit.hxx>
using ::editeng::SvxBorderLine;
using namespace ::comphelper;
@@ -1041,6 +1042,14 @@ void RtfExport::OutColorTable()
}
}
+ // TextFrame or paragraph background solid fill.
+ nMaxItem = rPool.GetItemCount2(XATTR_FILLCOLOR);
+ for (sal_uInt32 i = 0; i < nMaxItem; ++i)
+ {
+ if (const XFillColorItem* pItem = static_cast<const XFillColorItem*>(rPool.GetItem2(XATTR_FILLCOLOR, i)))
+ InsColor(pItem->GetColorValue());
+ }
+
for (size_t n = 0; n < m_aColTbl.size(); ++n)
{
const Color& rCol = m_aColTbl[ n ];