diff options
author | Daniel Vogelheim <dvo@openoffice.org> | 2001-05-03 15:41:15 +0000 |
---|---|---|
committer | Daniel Vogelheim <dvo@openoffice.org> | 2001-05-03 15:41:15 +0000 |
commit | c0733c4559550854bc53476aea470e88d3fe36be (patch) | |
tree | 800af0acd229500cfc52fc69f0748d9f47e14c55 /sw | |
parent | c47ea2da160a0a8062073cca94090f3b61a6b004 (diff) |
added support for reading <table:table-column-group>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/xml/xmltbli.cxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sw/source/filter/xml/xmltbli.cxx b/sw/source/filter/xml/xmltbli.cxx index 220574792ebe..2cbbbea06b44 100644 --- a/sw/source/filter/xml/xmltbli.cxx +++ b/sw/source/filter/xml/xmltbli.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmltbli.cxx,v $ * - * $Revision: 1.22 $ + * $Revision: 1.23 $ * - * last change: $Author: dvo $ $Date: 2001-04-23 15:48:37 $ + * last change: $Author: dvo $ $Date: 2001-05-03 16:41:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -197,6 +197,13 @@ static __FAR_DATA SvXMLTokenMapEntry aTableElemTokenMap[] = { XML_NAMESPACE_OFFICE, sXML_dde_source, XML_TOK_OFFICE_DDE_SOURCE }, + // There are slight differences between <table:table-columns> and + // <table:table-columns-groups>. However, none of these are + // supported in Writer (they are Calc-only features), so we + // support column groups by simply using the <table:table-columns> + // token for column groups, too. + { XML_NAMESPACE_TABLE, sXML_table_column_group, XML_TOK_TABLE_COLS }, + XML_TOKEN_MAP_END }; |