To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=81621





------- Additional comments from [EMAIL PROTECTED] Wed Feb 13 12:09:37 +0000 
2008 -------
i don`t know how to update CVS here
at my work machine i fix it 
it in file C:\Program Files\OpenOffice.org
2.3\share\xslt\import\wordml\wordml2ooo.xsl

in <xsl:template name="create-default-paragraph-styles"> just replace 

                <style:paragraph-properties>
                    <xsl:attribute name="style:tab-stop-distance">
                        <xsl:call-template name="ConvertMeasure">
                            <xsl:with-param name="value"
select="concat(/w:wordDocument/w:docPr/w:defaultTabStop/@w:val,'twip')"/>
                        </xsl:call-template>cm</xsl:attribute>
                </style:paragraph-properties>

with 

                                <style:paragraph-properties>
                    <xsl:attribute name="style:tab-stop-distance">
                        <xsl:variable name="dts">
                            <xsl:choose>
                                <xsl:when
test="/w:wordDocument/w:docPr/w:defaultTabStop/@w:val &gt; 0">
                                    <xsl:value-of
select="/w:wordDocument/w:docPr/w:defaultTabStop/@w:val"/></xsl:when>
                                <xsl:otherwise>709.317</xsl:otherwise>
                            </xsl:choose>
                        </xsl:variable>
                        <xsl:call-template name="ConvertMeasure">
                            <xsl:with-param name="value"
select="concat($dts,'twip')"/>
                        </xsl:call-template>cm</xsl:attribute>
                </style:paragraph-properties>

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to