summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--filter/source/xslt/export/wordml/ooo2wordml_table.xsl20
-rw-r--r--jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java2
-rw-r--r--jurt/com/sun/star/comp/connections/Acceptor.java2
-rw-r--r--jurt/com/sun/star/comp/connections/Connector.java2
-rw-r--r--jurt/com/sun/star/comp/connections/ConstantInstanceProvider.java2
-rw-r--r--jurt/com/sun/star/comp/connections/PipedConnection.java2
-rw-r--r--jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java2
-rw-r--r--jurt/com/sun/star/lib/connections/pipe/pipeConnector.java2
-rw-r--r--jurt/com/sun/star/lib/connections/socket/socketAcceptor.java2
-rw-r--r--jurt/com/sun/star/lib/connections/socket/socketConnector.java2
-rw-r--r--sc/source/ui/app/inputwin.cxx2
-rw-r--r--starmath/source/node.cxx2
12 files changed, 21 insertions, 21 deletions
diff --git a/filter/source/xslt/export/wordml/ooo2wordml_table.xsl b/filter/source/xslt/export/wordml/ooo2wordml_table.xsl
index 5aaf70c1e497..341a5908b4a9 100644
--- a/filter/source/xslt/export/wordml/ooo2wordml_table.xsl
+++ b/filter/source/xslt/export/wordml/ooo2wordml_table.xsl
@@ -98,7 +98,7 @@
<xsl:if test="@table:is-sub-table ='true' ">
<w:tblW w:type="dxa">
<xsl:variable name="sub-table-width">
- <xsl:call-template name="caculate-sub-table-width">
+ <xsl:call-template name="calculate-sub-table-width">
<xsl:with-param name="sub-table-column-node" select="table:table-column[1]"/>
<xsl:with-param name="total-sub-table-width" select="0"/>
</xsl:call-template>
@@ -137,7 +137,7 @@
<w:p/>
</xsl:if>
</xsl:template>
- <xsl:template name="caculate-sub-table-width">
+ <xsl:template name="calculate-sub-table-width">
<xsl:param name="sub-table-column-node"/>
<xsl:param name="total-sub-table-width"/>
<xsl:variable name="column-width" select="key('table-column-style', $sub-table-column-node/@table:style-name)/style:table-column-properties/@style:column-width"/>
@@ -150,13 +150,13 @@
<xsl:when test="$sub-table-column-node/following-sibling::table:table-column">
<xsl:choose>
<xsl:when test="$sub-table-column-node/@table:number-columns-repeated">
- <xsl:call-template name="caculate-sub-table-width">
+ <xsl:call-template name="calculate-sub-table-width">
<xsl:with-param name="sub-table-column-node" select="$sub-table-column-node/following-sibling::table:table-column[ 1]"/>
<xsl:with-param name="total-sub-table-width" select="$total-sub-table-width + $column-width-in-twip * $sub-table-column-node/@table:number-columns-repeated"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
- <xsl:call-template name="caculate-sub-table-width">
+ <xsl:call-template name="calculate-sub-table-width">
<xsl:with-param name="sub-table-column-node" select="$sub-table-column-node/following-sibling::table:table-column[1]"/>
<xsl:with-param name="total-sub-table-width" select="$total-sub-table-width + $column-width-in-twip "/>
</xsl:call-template>
@@ -234,7 +234,7 @@
<!--when the table-cell contains the sub-table -->
<xsl:when test="table:table/@table:is-sub-table= 'true' ">
<xsl:variable name="table-cell-width">
- <xsl:call-template name="caculate-sub-table-width">
+ <xsl:call-template name="calculate-sub-table-width">
<xsl:with-param name="sub-table-column-node" select="table:table/table:table-column[1]"/>
<xsl:with-param name="total-sub-table-width" select="0"/>
</xsl:call-template>
@@ -246,7 +246,7 @@
<xsl:otherwise>
<!-- when the table-cell doesn't contain the sub-table -->
<xsl:variable name="table-cell-width">
- <xsl:call-template name="caculate-table-cell-width">
+ <xsl:call-template name="calculate-table-cell-width">
<xsl:with-param name="table-cell-position" select="position()"/>
<xsl:with-param name="table-column" select="ancestor::table:table[1]/table:table-column[1]"/>
</xsl:call-template>
@@ -354,7 +354,7 @@
<xsl:apply-templates select=" text:p | table:table | text:h | office:annotation"/>
</xsl:element>
</xsl:template>
- <xsl:template name="caculate-table-cell-width">
+ <xsl:template name="calculate-table-cell-width">
<xsl:param name="table-cell-position"/>
<xsl:param name="table-column"/>
<xsl:choose>
@@ -370,7 +370,7 @@
<xsl:value-of select="$table-cell-width-in-twip"/>
</xsl:when>
<xsl:otherwise>
- <xsl:call-template name="caculate-table-cell-width">
+ <xsl:call-template name="calculate-table-cell-width">
<xsl:with-param name="table-cell-position" select="$table-cell-position - $table-column/@table:number-columns-repeated"/>
<xsl:with-param name="table-column" select="$table-column/following-sibling::table:table-column[1]"/>
</xsl:call-template>
@@ -390,14 +390,14 @@
<xsl:value-of select="$table-cell-width-in-twip"/>
</xsl:when>
<xsl:when test="($table-cell-position - 1) &gt; 0">
- <xsl:call-template name="caculate-table-cell-width">
+ <xsl:call-template name="calculate-table-cell-width">
<xsl:with-param name="table-cell-position" select=" $table-cell-position - 1 "/>
<xsl:with-param name="table-column" select="$table-column/following-sibling::table:table-column[1]"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:message>
- <xsl:value-of select=" 'caculate table cell width wrong ' "/>
+ <xsl:value-of select=" 'calculate table cell width wrong ' "/>
</xsl:message>
</xsl:otherwise>
</xsl:choose>
diff --git a/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java b/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java
index 7dd6fcf6762a..d84b7397e3ed 100644
--- a/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java
+++ b/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java
@@ -49,7 +49,7 @@ public class BridgeFactory implements XBridgeFactory/*, XEventListener*/ {
static private final boolean DEBUG = false;
/**
- * The name of the service, the <code>JavaLoader</code> acceses this through
+ * The name of the service, the <code>JavaLoader</code> accesses this through
* reflection.
*/
public final static String __serviceName = "com.sun.star.bridge.BridgeFactory";
diff --git a/jurt/com/sun/star/comp/connections/Acceptor.java b/jurt/com/sun/star/comp/connections/Acceptor.java
index 7c8e0e9e494b..90fb55cba098 100644
--- a/jurt/com/sun/star/comp/connections/Acceptor.java
+++ b/jurt/com/sun/star/comp/connections/Acceptor.java
@@ -45,7 +45,7 @@ public final class Acceptor implements XAcceptor {
/**
* The name of the service.
*
- * <p>The <code>JavaLoader</code> acceses this through reflection.</p>
+ * <p>The <code>JavaLoader</code> accesses this through reflection.</p>
*
* @see com.sun.star.comp.loader.JavaLoader
*/
diff --git a/jurt/com/sun/star/comp/connections/Connector.java b/jurt/com/sun/star/comp/connections/Connector.java
index 17d3a1ca28b4..f53ab4f23e60 100644
--- a/jurt/com/sun/star/comp/connections/Connector.java
+++ b/jurt/com/sun/star/comp/connections/Connector.java
@@ -45,7 +45,7 @@ public class Connector implements XConnector {
/**
* The name of the service.
*
- * <p>The <code>JavaLoader</code> acceses this through reflection.</p>
+ * <p>The <code>JavaLoader</code> accesses this through reflection.</p>
*
* @see com.sun.star.comp.loader.JavaLoader
*/
diff --git a/jurt/com/sun/star/comp/connections/ConstantInstanceProvider.java b/jurt/com/sun/star/comp/connections/ConstantInstanceProvider.java
index 687f70efe9ad..8204ef16bff6 100644
--- a/jurt/com/sun/star/comp/connections/ConstantInstanceProvider.java
+++ b/jurt/com/sun/star/comp/connections/ConstantInstanceProvider.java
@@ -45,7 +45,7 @@ public class ConstantInstanceProvider implements XInstanceProvider {
static public final boolean DEBUG = false;
/**
- * The name of the service, the <code>JavaLoader</code> acceses this through
+ * The name of the service, the <code>JavaLoader</code> accesses this through
* reflection.
*/
static private final String __serviceName = "com.sun.star.comp.connection.InstanceProvider";
diff --git a/jurt/com/sun/star/comp/connections/PipedConnection.java b/jurt/com/sun/star/comp/connections/PipedConnection.java
index 8cae64d3cdfc..91541508b65b 100644
--- a/jurt/com/sun/star/comp/connections/PipedConnection.java
+++ b/jurt/com/sun/star/comp/connections/PipedConnection.java
@@ -41,7 +41,7 @@ public class PipedConnection implements XConnection {
public static final boolean DEBUG = false;
/**
- * The name of the service, the <code>JavaLoader</code> acceses this through
+ * The name of the service, the <code>JavaLoader</code> accesses this through
* reflection.
*/
static private final String __serviceName = "com.sun.star.connection.PipedConnection";
diff --git a/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java b/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java
index 52e00a441683..58400b3b35c9 100644
--- a/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java
+++ b/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java
@@ -45,7 +45,7 @@ public final class pipeAcceptor implements XAcceptor {
/**
* The name of the service.
*
- * <p>The <code>JavaLoader</code> acceses this through reflection.</p>
+ * <p>The <code>JavaLoader</code> accesses this through reflection.</p>
*
* @see com.sun.star.comp.loader.JavaLoader
*/
diff --git a/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java b/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java
index d70138457ced..875e0f2ecd3d 100644
--- a/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java
+++ b/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java
@@ -45,7 +45,7 @@ public final class pipeConnector implements XConnector {
/**
* The name of the service.
*
- * <p>The <code>JavaLoader</code> acceses this through reflection.</p>
+ * <p>The <code>JavaLoader</code> accesses this through reflection.</p>
*
* @see com.sun.star.comp.loader.JavaLoader
*/
diff --git a/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java b/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java
index 85790dfdd21e..022f89142c75 100644
--- a/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java
+++ b/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java
@@ -48,7 +48,7 @@ public final class socketAcceptor implements XAcceptor {
/**
* The name of the service.
*
- * <p>The <code>JavaLoader</code> acceses this through reflection.</p>
+ * <p>The <code>JavaLoader</code> accesses this through reflection.</p>
*
* @see com.sun.star.comp.loader.JavaLoader
*/
diff --git a/jurt/com/sun/star/lib/connections/socket/socketConnector.java b/jurt/com/sun/star/lib/connections/socket/socketConnector.java
index 1d3c2b1b57c3..fc44639a5feb 100644
--- a/jurt/com/sun/star/lib/connections/socket/socketConnector.java
+++ b/jurt/com/sun/star/lib/connections/socket/socketConnector.java
@@ -50,7 +50,7 @@ public final class socketConnector implements XConnector {
/**
* The name of the service.
*
- * <p>The <code>JavaLoader</code> acceses this through reflection.</p>
+ * <p>The <code>JavaLoader</code> accesses this through reflection.</p>
*
* @see com.sun.star.comp.loader.JavaLoader
*/
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index cc9bf9810062..07c9a2149dc4 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -870,7 +870,7 @@ void ScInputWindow::MouseButtonDown( const MouseEvent& rMEvt )
// find the height of the gridwin, we don't wan't to be
// able to expand the toolbar too far so we need to
- // caculate an upper limit
+ // calculate an upper limit
// I'd prefer to leave at least a single column header and a
// row but I don't know how to get that value in pixels.
// Use TBX_WINDOW_HEIGHT for the moment
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx
index 0e95f9cc66e8..59eee48943f2 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -2608,7 +2608,7 @@ void SmMatrixNode::Arrange(const OutputDevice &rDev, const SmFormat &rFormat)
const SmNode *pCoNode = pTmpNode->GetLeftMost();
RectHorAlign eHorAlign = pCoNode->GetRectHorAlign();
- // caculate horizontal position of element depending on column
+ // calculate horizontal position of element depending on column
// and horizontal alignment
switch (eHorAlign)
{ case RHA_LEFT: