This is an automated email from the ASF dual-hosted git repository.
mseidel pushed a commit to branch AOO41X
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO41X by this push:
new 48d9db7463 Fixed typos
48d9db7463 is described below
commit 48d9db746374758d1b5084833b95fb1d26875955
Author: mseidel <[email protected]>
AuthorDate: Wed Mar 12 19:14:41 2025 +0100
Fixed typos
---
main/filter/source/xslt/import/uof/uof2odf_presentation.xsl | 10 +++++-----
main/filter/source/xslt/import/uof/uof2odf_spreadsheet.xsl | 10 +++++-----
main/filter/source/xslt/import/uof2/uof2odf.xsl | 10 +++++-----
3 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/main/filter/source/xslt/import/uof/uof2odf_presentation.xsl
b/main/filter/source/xslt/import/uof/uof2odf_presentation.xsl
index d999cbca90..8b3bd37d9f 100644
--- a/main/filter/source/xslt/import/uof/uof2odf_presentation.xsl
+++ b/main/filter/source/xslt/import/uof/uof2odf_presentation.xsl
@@ -2288,7 +2288,7 @@
<xsl:template name="drawpoints">
<xsl:param name="points"/>
<xsl:param name="value"/>
- <xsl:variable name="frist-piont">
+ <xsl:variable name="first-point">
<xsl:value-of
select="substring-before($points,'lineto')"/>
</xsl:variable>
<xsl:variable name="other-points">
@@ -2297,10 +2297,10 @@
<xsl:choose>
<xsl:when test="contains($other-points,'lineto')">
<xsl:variable name="x-coor">
- <xsl:value-of
select="substring-before($frist-piont,' ') * 1000"/>
+ <xsl:value-of
select="substring-before($first-point,' ') * 1000"/>
</xsl:variable>
<xsl:variable name="y-coor">
- <xsl:value-of
select="substring-after($frist-piont,' ') * 1000"/>
+ <xsl:value-of
select="substring-after($first-point,' ') * 1000"/>
</xsl:variable>
<xsl:variable name="all-points">
<xsl:value-of
select="concat($value,$x-coor,',',$y-coor,' ')"/>
@@ -2312,10 +2312,10 @@
</xsl:when>
<xsl:otherwise>
<xsl:variable name="q-x-coor">
- <xsl:value-of
select="substring-before($frist-piont,' ') * 1000"/>
+ <xsl:value-of
select="substring-before($first-point,' ') * 1000"/>
</xsl:variable>
<xsl:variable name="q-y-coor">
- <xsl:value-of
select="substring-after($frist-piont,' ') * 1000"/>
+ <xsl:value-of
select="substring-after($first-point,' ') * 1000"/>
</xsl:variable>
<xsl:variable name="e-x-coor">
<xsl:value-of
select="substring-before($other-points,' ') * 1000"/>
diff --git a/main/filter/source/xslt/import/uof/uof2odf_spreadsheet.xsl
b/main/filter/source/xslt/import/uof/uof2odf_spreadsheet.xsl
index 34c862daff..1c43afbb33 100644
--- a/main/filter/source/xslt/import/uof/uof2odf_spreadsheet.xsl
+++ b/main/filter/source/xslt/import/uof/uof2odf_spreadsheet.xsl
@@ -3926,7 +3926,7 @@
<xsl:template name="drawpoints">
<xsl:param name="points"/>
<xsl:param name="value"/>
- <xsl:variable name="frist-piont">
+ <xsl:variable name="first-point">
<xsl:value-of
select="substring-before($points,'lineto')"/>
</xsl:variable>
<xsl:variable name="other-points">
@@ -3935,10 +3935,10 @@
<xsl:choose>
<xsl:when test="contains($other-points,'lineto')">
<xsl:variable name="x-coor">
- <xsl:value-of
select="substring-before($frist-piont,' ') * 1000"/>
+ <xsl:value-of
select="substring-before($first-point,' ') * 1000"/>
</xsl:variable>
<xsl:variable name="y-coor">
- <xsl:value-of
select="substring-after($frist-piont,' ') * 1000"/>
+ <xsl:value-of
select="substring-after($first-point,' ') * 1000"/>
</xsl:variable>
<xsl:variable name="all-points">
<xsl:value-of
select="concat($value,$x-coor,',',$y-coor,' ')"/>
@@ -3950,10 +3950,10 @@
</xsl:when>
<xsl:otherwise>
<xsl:variable name="q-x-coor">
- <xsl:value-of
select="substring-before($frist-piont,' ') * 1000"/>
+ <xsl:value-of
select="substring-before($first-point,' ') * 1000"/>
</xsl:variable>
<xsl:variable name="q-y-coor">
- <xsl:value-of
select="substring-after($frist-piont,' ') * 1000"/>
+ <xsl:value-of
select="substring-after($first-point,' ') * 1000"/>
</xsl:variable>
<xsl:variable name="e-x-coor">
<xsl:value-of
select="substring-before($other-points,' ') * 1000"/>
diff --git a/main/filter/source/xslt/import/uof2/uof2odf.xsl
b/main/filter/source/xslt/import/uof2/uof2odf.xsl
index be6c3fbd87..76722569ba 100644
--- a/main/filter/source/xslt/import/uof2/uof2odf.xsl
+++ b/main/filter/source/xslt/import/uof2/uof2odf.xsl
@@ -8965,7 +8965,7 @@
iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAIAAABLbSncAAAAKElEQVR4nGNRZrhz57+yCuNdBjCAs1kg
<xsl:param name="points"/>
<xsl:param name="value"/>
<xsl:if test="$points">
- <xsl:variable name="frist-piont">
+ <xsl:variable name="first-point">
<xsl:value-of
select="substring-before($points,'lineto')"/>
</xsl:variable>
<xsl:variable name="other-points">
@@ -8974,10 +8974,10 @@
iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAIAAABLbSncAAAAKElEQVR4nGNRZrhz57+yCuNdBjCAs1kg
<xsl:choose>
<xsl:when
test="contains($other-points,'lineto')">
<xsl:variable name="x-coor">
- <xsl:value-of
select="number(substring-before($frist-piont,' ')) * 1000"/>
+ <xsl:value-of
select="number(substring-before($first-point,' ')) * 1000"/>
</xsl:variable>
<xsl:variable name="y-coor">
- <xsl:value-of
select="number(substring-after($frist-piont,' ')) * 1000"/>
+ <xsl:value-of
select="number(substring-after($first-point,' ')) * 1000"/>
</xsl:variable>
<xsl:call-template name="DrawPoints">
<xsl:with-param name="points"
select="$other-points"/>
@@ -8986,10 +8986,10 @@
iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAIAAABLbSncAAAAKElEQVR4nGNRZrhz57+yCuNdBjCAs1kg
</xsl:when>
<xsl:otherwise>
<xsl:variable name="q-x-coor">
- <xsl:value-of
select="number(substring-before($frist-piont,' ')) * 1000"/>
+ <xsl:value-of
select="number(substring-before($first-point,' ')) * 1000"/>
</xsl:variable>
<xsl:variable name="q-y-coor">
- <xsl:value-of
select="number(substring-after($frist-piont,' ')) * 1000"/>
+ <xsl:value-of
select="number(substring-after($first-point,' ')) * 1000"/>
</xsl:variable>
<xsl:variable name="e-x-coor">
<xsl:value-of
select="number(substring-before($other-points,' ')) * 1000"/>