summaryrefslogtreecommitdiff
path: root/writerperfect/source/writer/exp/xmlfmt.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerperfect/source/writer/exp/xmlfmt.cxx')
-rw-r--r--writerperfect/source/writer/exp/xmlfmt.cxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/writerperfect/source/writer/exp/xmlfmt.cxx b/writerperfect/source/writer/exp/xmlfmt.cxx
index 2c73a9a8c968..23550616953b 100644
--- a/writerperfect/source/writer/exp/xmlfmt.cxx
+++ b/writerperfect/source/writer/exp/xmlfmt.cxx
@@ -23,13 +23,15 @@ XMLStylesContext::XMLStylesContext(XMLImport &rImport, std::map<OUString, librev
std::map<OUString, librevenge::RVNGPropertyList> &rTextStyles,
std::map<OUString, librevenge::RVNGPropertyList> &rCellStyles,
std::map<OUString, librevenge::RVNGPropertyList> &rColumnStyles,
- std::map<OUString, librevenge::RVNGPropertyList> &rRowStyles)
+ std::map<OUString, librevenge::RVNGPropertyList> &rRowStyles,
+ std::map<OUString, librevenge::RVNGPropertyList> &rTableStyles)
: XMLImportContext(rImport),
m_rParagraphStyles(rParagraphStyles),
m_rTextStyles(rTextStyles),
m_rCellStyles(rCellStyles),
m_rColumnStyles(rColumnStyles),
- m_rRowStyles(rRowStyles)
+ m_rRowStyles(rRowStyles),
+ m_rTableStyles(rTableStyles)
{
}
@@ -65,6 +67,11 @@ std::map<OUString, librevenge::RVNGPropertyList> &XMLStylesContext::GetCurrentRo
return m_rRowStyles;
}
+std::map<OUString, librevenge::RVNGPropertyList> &XMLStylesContext::GetCurrentTableStyles()
+{
+ return m_rTableStyles;
+}
+
} // namespace exp
} // namespace writerperfect