nitpick tdf#123262 writefilter: use enum class and document
Change-Id: Ibc040c75fff309699911ffa72d1f44ce5b231688
Reviewed-on: https://gerrit.libreoffice.org/85644
Tested-by: Jenkins
Reviewed-by: Justin Luth <justin_luth@sil.org>
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.hxx b/writerfilter/source/dmapper/DomainMapper_Impl.hxx
index f3f9f77..cdbc2f8 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.hxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.hxx
@@ -114,7 +114,16 @@ enum BreakType
COLUMN_BREAK
};
enum SkipFootnoteSeparator
/**
* Two special footnotes are a separator line, and a continuation line.
* In MSOffice, these can contain text as well, but LO doesn't implement this
* rarely used feature, so the separator text needs to be skipped. (tdf#123262)
* Three-way logic is needed because there is no guaranteed on-off event.
* OFF == not in footnote separator
* ON == in footnote separator
* SKIPPING == ON status has been recognized.
*/
enum class SkipFootnoteSeparator
{
OFF,
ON,