[Libreoffice-commits] core.git: filter/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Fri May 31 06:58:08 UTC 2019
filter/source/xslt/export/uof/odf2uof_spreadsheet.xsl | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
New commits:
commit 92418d9454e5842d34dd8140115ba42515c0d816
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Tue May 14 21:23:51 2019 +0000
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Fri May 31 08:57:30 2019 +0200
Fix typo
Change-Id: Idc95790ec29502c65db8b2f4cf1eda24a167a924
Reviewed-on: https://gerrit.libreoffice.org/73236
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
Tested-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/filter/source/xslt/export/uof/odf2uof_spreadsheet.xsl b/filter/source/xslt/export/uof/odf2uof_spreadsheet.xsl
index c5bc9c14d4f0..95b38546a594 100644
--- a/filter/source/xslt/export/uof/odf2uof_spreadsheet.xsl
+++ b/filter/source/xslt/export/uof/odf2uof_spreadsheet.xsl
@@ -3536,7 +3536,7 @@
<xsl:with-param name="preceding-cellstylename" select="''"/>
<xsl:with-param name="temp-num" select="'0'"/>
<xsl:with-param name="cellstylename" select="$cellstylename"/>
- <xsl:with-param name="table-collumns" select="$cell/ancestor::table:table//table:table-column "/>
+ <xsl:with-param name="table-columns" select="$cell/ancestor::table:table//table:table-column "/>
</xsl:call-template>
</xsl:variable>
<xsl:choose>
@@ -3556,13 +3556,13 @@
<xsl:param name="preceding-cellstylename"/>
<xsl:param name="temp-num"/>
<xsl:param name="cellstylename"/>
- <xsl:param name="table-collumns"/>
+ <xsl:param name="table-columns"/>
<xsl:choose>
<xsl:when test="$temp-num<$column-num">
<xsl:variable name="firstcolumn">
<xsl:choose>
- <xsl:when test="$table-collumns[1]/@table:number-columns-repeated">
- <xsl:value-of select="$table-collumns[1]/@table:number-columns-repeated"/>
+ <xsl:when test="$table-columns[1]/@table:number-columns-repeated">
+ <xsl:value-of select="$table-columns[1]/@table:number-columns-repeated"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="'1'"/>
@@ -3571,8 +3571,8 @@
</xsl:variable>
<xsl:variable name="preceding-cellstylename-to-param">
<xsl:choose>
- <xsl:when test="$table-collumns[1]/@table:default-cell-style-name">
- <xsl:value-of select="$table-collumns[1]/@table:default-cell-style-name"/>
+ <xsl:when test="$table-columns[1]/@table:default-cell-style-name">
+ <xsl:value-of select="$table-columns[1]/@table:default-cell-style-name"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="''"/>
@@ -3584,7 +3584,7 @@
<xsl:with-param name="temp-num" select="$temp-num + $firstcolumn"/>
<xsl:with-param name="preceding-cellstylename" select="$preceding-cellstylename-to-param"/>
<xsl:with-param name="cellstylename" select="$cellstylename"/>
- <xsl:with-param name="table-collumns" select="$table-collumns[position()!=1]"/>
+ <xsl:with-param name="table-columns" select="$table-columns[position()!=1]"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
@@ -3734,7 +3734,7 @@
<!--xsl:if test="@style:parent-style-name">
<xsl:attribute name="表:基式样引用"><xsl:value-of select="@style:parent-style-name"/></xsl:attribute>
</xsl:if-->
- <!--chengxz chang the order-->
+ <!--chengxz change the order-->
<xsl:variable name="styleProperties" select="key('styles', $styleName)/*"/>
<xsl:call-template name="Font">
<xsl:with-param name="styleProperties" select="$styleProperties"/>
More information about the Libreoffice-commits
mailing list