summaryrefslogtreecommitdiff
path: root/writerperfect/source/filter
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-11-01 09:08:48 +0000
committerKurt Zenker <kz@openoffice.org>2005-11-01 09:08:48 +0000
commit728c94dfaf2802f5b77222116f233f044015cc0a (patch)
tree8cc2cc7a3fd4d4252b0f4939ac99c38753816877 /writerperfect/source/filter
parent194ca6698781e24b5ccad530fdf440e65e8bafa1 (diff)
INTEGRATION: CWS fs04 (1.2.10); FILE MERGED
2005/08/26 13:33:34 fridrich_strba 1.2.10.1: Issue number: Submitted by: fridrich_strba Reviewed by: fridrich_strba Work around for the current impossibility of having tables in footnotes and endnotes; Convert list styles more faithfully; Convert correctyl page/column breaks before tables.
Diffstat (limited to 'writerperfect/source/filter')
-rw-r--r--writerperfect/source/filter/ListStyle.hxx1
-rw-r--r--writerperfect/source/filter/TableStyle.cxx2
2 files changed, 3 insertions, 0 deletions
diff --git a/writerperfect/source/filter/ListStyle.hxx b/writerperfect/source/filter/ListStyle.hxx
index 850dcd105c3c..19b91049cdc4 100644
--- a/writerperfect/source/filter/ListStyle.hxx
+++ b/writerperfect/source/filter/ListStyle.hxx
@@ -64,6 +64,7 @@ class ListStyle : public Style
public:
ListStyle(const char *psName, const int iListID);
virtual ~ListStyle();
+ virtual void updateListLevel(const int iLevel, const WPXPropertyList &xPropList) = 0;
virtual void write(DocumentHandler &xHandler) const;
const int getListID() { return miListID; }
const bool isListLevelDefined(int iLevel) const;
diff --git a/writerperfect/source/filter/TableStyle.cxx b/writerperfect/source/filter/TableStyle.cxx
index 5b7e06c2f3d8..bf715941160a 100644
--- a/writerperfect/source/filter/TableStyle.cxx
+++ b/writerperfect/source/filter/TableStyle.cxx
@@ -122,6 +122,8 @@ void TableStyle::write(DocumentHandler &xHandler) const
stylePropertiesOpen.addAttribute("fo:margin-right", mPropList["fo:margin-right"]->getStr());
if (mPropList["style:width"])
stylePropertiesOpen.addAttribute("style:width", mPropList["style:width"]->getStr());
+ if (mPropList["fo:break-before"])
+ stylePropertiesOpen.addAttribute("fo:break-before", mPropList["fo:break-before"]->getStr());
stylePropertiesOpen.write(xHandler);
xHandler.endElement("style:properties");