summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/wrtww8.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ww8/wrtww8.hxx')
-rw-r--r--sw/source/filter/ww8/wrtww8.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/sw/source/filter/ww8/wrtww8.hxx b/sw/source/filter/ww8/wrtww8.hxx
index 30ee97d909bd..55ae63629306 100644
--- a/sw/source/filter/ww8/wrtww8.hxx
+++ b/sw/source/filter/ww8/wrtww8.hxx
@@ -633,6 +633,9 @@ public:
/// Determines if the format is expected to support unicode.
virtual bool SupportsUnicode() const = 0;
+ /// Determines if column break with one column should be exported or not.
+ virtual bool SupportsOneColumnBreak() const = 0;
+
/// Used to filter out attributes that can be e.g. written to .doc but not to .docx
virtual bool ignoreAttributeForStyles( sal_uInt16 /*nWhich*/ ) const { return false; }
@@ -956,6 +959,8 @@ public:
/// False for WW6, true for WW8.
virtual bool SupportsUnicode() const { return bWrtWW8; }
+ virtual bool SupportsOneColumnBreak() const { return false; }
+
private:
/// Format-dependent part of the actual export.
virtual void ExportDocument_Impl();