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 c3854e5323c4..2c73a9a8c968 100644
--- a/writerperfect/source/writer/exp/xmlfmt.cxx
+++ b/writerperfect/source/writer/exp/xmlfmt.cxx
@@ -22,12 +22,14 @@ namespace exp
XMLStylesContext::XMLStylesContext(XMLImport &rImport, std::map<OUString, librevenge::RVNGPropertyList> &rParagraphStyles,
std::map<OUString, librevenge::RVNGPropertyList> &rTextStyles,
std::map<OUString, librevenge::RVNGPropertyList> &rCellStyles,
- std::map<OUString, librevenge::RVNGPropertyList> &rColumnStyles)
+ std::map<OUString, librevenge::RVNGPropertyList> &rColumnStyles,
+ std::map<OUString, librevenge::RVNGPropertyList> &rRowStyles)
: XMLImportContext(rImport),
m_rParagraphStyles(rParagraphStyles),
m_rTextStyles(rTextStyles),
m_rCellStyles(rCellStyles),
- m_rColumnStyles(rColumnStyles)
+ m_rColumnStyles(rColumnStyles),
+ m_rRowStyles(rRowStyles)
{
}
@@ -58,6 +60,11 @@ std::map<OUString, librevenge::RVNGPropertyList> &XMLStylesContext::GetCurrentCo
return m_rColumnStyles;
}
+std::map<OUString, librevenge::RVNGPropertyList> &XMLStylesContext::GetCurrentRowStyles()
+{
+ return m_rRowStyles;
+}
+
} // namespace exp
} // namespace writerperfect