This is an automated email from the ASF dual-hosted git repository.
mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new eed36da692 Fix spelling (#249)
eed36da692 is described below
commit eed36da692a6e12fe28192f487545745411ead90
Author: John Bampton <[email protected]>
AuthorDate: Tue Jan 14 08:46:39 2025 +1000
Fix spelling (#249)
* Fix spelling
* Update main/filter/source/xslt/import/wordml/wordml2ooo_path.xsl
* Update wordml2ooo_path.xsl
---------
Co-authored-by: Matthias Seidel <[email protected]>
---
main/connectivity/source/inc/file/FTable.hxx | 2 +-
main/dbaccess/source/ui/misc/UITools.cxx | 4 ++--
main/filter/source/xslt/import/wordml/wordml2ooo_draw.xsl | 12 ++++++------
main/filter/source/xslt/import/wordml/wordml2ooo_path.xsl | 6 +++---
main/odk/examples/java/Text/TextReplace.java | 2 +-
.../java/OOoRunner/src/main/java/ifc/awt/_XWindow.java | 2 +-
.../src/main/java/ifc/beans/_XMultiPropertyStates.java | 2 +-
.../OOoRunner/src/main/java/ifc/container/_XContainer.java | 2 +-
.../java/OOoRunner/src/main/java/ifc/document/_XFilter.java | 2 +-
.../src/main/java/ifc/form/_XChangeBroadcaster.java | 2 +-
.../java/OOoRunner/src/main/java/ifc/frame/_XFrame.java | 2 +-
.../src/main/java/ifc/script/_XInvocationAdapterFactory.java | 2 +-
.../main/java/ifc/script/_XInvocationAdapterFactory2.java | 2 +-
.../src/main/java/ifc/sheet/_XDataPilotDescriptor.java | 2 +-
.../src/main/java/ifc/ui/dialogs/_XExecutableDialog.java | 4 ++--
.../java/OOoRunner/src/main/java/ifc/view/_XPrintable.java | 2 +-
.../java/OOoRunner/src/main/java/mod/_dbaccess/ORowSet.java | 2 +-
.../OOoRunner/src/main/java/mod/_forms/ODatabaseForm.java | 6 +++---
.../OOoRunner/src/main/java/mod/_svx/SvxShapeCircle.java | 8 ++++----
.../src/main/java/mod/_sw/SwAccessibleFooterView.java | 2 +-
.../src/main/java/mod/_sw/SwAccessibleHeaderView.java | 2 +-
.../XMultiPropertyStates/beans_XMultiPropertyStates.xba | 2 +-
main/qadevOOo/tests/basic/ifc/frame/XFrame/frame_XFrame.xba | 2 +-
.../ifc/sdb/ErrorMessageDialog/sdb_ErrorMessageDialog.xba | 2 +-
main/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java | 2 +-
main/sw/source/filter/ww8/docxexport.cxx | 2 +-
main/writerfilter/inc/doctok/WW8Document.hxx | 10 +++++-----
27 files changed, 45 insertions(+), 45 deletions(-)
diff --git a/main/connectivity/source/inc/file/FTable.hxx
b/main/connectivity/source/inc/file/FTable.hxx
index bb03465759..f427ace9ae 100644
--- a/main/connectivity/source/inc/file/FTable.hxx
+++ b/main/connectivity/source/inc/file/FTable.hxx
@@ -50,7 +50,7 @@ namespace connectivity
sal_Int32
m_nFilePos;
// aktuelle IResultSetHelper::Movement
sal_uInt8*
m_pBuffer;
sal_uInt16
m_nBufferSize; // Groesse des
ReadBuffer, wenn pBuffer != NULL
- sal_Bool
m_bWriteable; // svstream cann't say
if we are writeable
+ sal_Bool
m_bWriteable; // svstream can't say
if we are writeable
// so we have to
virtual void FileClose();
diff --git a/main/dbaccess/source/ui/misc/UITools.cxx
b/main/dbaccess/source/ui/misc/UITools.cxx
index 492ac5d2d9..5fc2fd1153 100644
--- a/main/dbaccess/source/ui/misc/UITools.cxx
+++ b/main/dbaccess/source/ui/misc/UITools.cxx
@@ -1491,7 +1491,7 @@ namespace
return bRet;
}
// .........................................................................
-} // annonymous
+} // anonymous
// .........................................................................
//
-----------------------------------------------------------------------------
::com::sun::star::util::URL createHelpAgentURL(const ::rtl::OUString&
_sModuleName, const rtl::OString& sHelpId)
@@ -1562,7 +1562,7 @@ TOTypeInfoSP queryPrimaryKeyType(const OTypeInfoMap&
_rTypeInfo)
if ( !pTypeInfo.get() ) // just a fallback
pTypeInfo = queryTypeInfoByType(DataType::VARCHAR,_rTypeInfo);
- OSL_ENSURE(pTypeInfo.get(),"checkColumns: cann't find a type which is
useable as a key!");
+ OSL_ENSURE(pTypeInfo.get(),"checkColumns: can't find a type which is
useable as a key!");
return pTypeInfo;
}
//
-----------------------------------------------------------------------------
diff --git a/main/filter/source/xslt/import/wordml/wordml2ooo_draw.xsl
b/main/filter/source/xslt/import/wordml/wordml2ooo_draw.xsl
index afe739dd21..505b998caa 100644
--- a/main/filter/source/xslt/import/wordml/wordml2ooo_draw.xsl
+++ b/main/filter/source/xslt/import/wordml/wordml2ooo_draw.xsl
@@ -1531,12 +1531,12 @@
<xsl:when test="string-length($typeid_adj) = 0">
<xsl:if test="contains(@adj,',')">
<!--Please Note that the modifier can be more
than 2 , so use a translate can be more efficient.
- -####Note that comma cann't be recognized by
OOo's modifiers
+ -####Note that comma can't be recognized by
AOO's modifiers
<xsl:variable name="adjust-x"
select="substring-before(@adj,',')"/>
<xsl:variable name="adjust-y"
select="substring-after(@adj,',')"/>
<xsl:variable name="adjuststr">
<xsl:if test="$adjust-x and $adjust-y">
- -####Note that comma cann't be
recognized by OOo's modifiers->
+ -####Note that comma can't be
recognized by AOO's modifiers->
<xsl:value-of select="concat(
$adjust-x , ' ' ,$adjust-y )"/>
</xsl:if>
</xsl:variable>-->
@@ -1545,7 +1545,7 @@
</xsl:attribute>
</xsl:if>
<xsl:if test="@adj and not(contains(@adj,','))">
- <!--####Note that comma cann't be recognized
by OOo's modifiers.-->
+ <!--####Note that comma can't be recognized by
AOO's modifiers.-->
<xsl:attribute name="draw:modifiers">
<xsl:value-of select="@adj"/>
</xsl:attribute>
@@ -1778,12 +1778,12 @@
<xsl:if test="not($instance/@adj)">
<xsl:if test="contains(@adj,',')">-->
<!--Please Note that the modifier can be more than 2 , so use a
translate can be more efficient.
- -####Note that comma cann't be recognized by OOo's
modifiers
+ -####Note that comma can't be recognized by AOO's
modifiers
<xsl:variable name="adjust-x"
select="substring-before(@adj,',')"/>
<xsl:variable name="adjust-y"
select="substring-after(@adj,',')"/>
<xsl:variable name="adjuststr">
<xsl:if test="$adjust-x and $adjust-y">
- < -####Note that comma cann't be recognized by OOo's
modifiers.->
+ < -####Note that comma can't be recognized by AOO's
modifiers.->
<xsl:value-of select="concat( $adjust-x , ' '
,$adjust-y )"/>
</xsl:if>
</xsl:variable>-->
@@ -1792,7 +1792,7 @@
</xsl:attribute>
</xsl:if>
<xsl:if test="@adj and not(contains(@adj,','))">-->
- <!--####Note that comma cann't be recognized by OOo's modifiers.-->
+ <!--####Note that comma can't be recognized by AOO's modifiers.-->
<!--Dummy after version 1.63 <xsl:attribute name="draw:modifiers">
<xsl:value-of select="@adj"/>
</xsl:attribute>
diff --git a/main/filter/source/xslt/import/wordml/wordml2ooo_path.xsl
b/main/filter/source/xslt/import/wordml/wordml2ooo_path.xsl
index cec237b9dd..580a4fd15e 100644
--- a/main/filter/source/xslt/import/wordml/wordml2ooo_path.xsl
+++ b/main/filter/source/xslt/import/wordml/wordml2ooo_path.xsl
@@ -588,9 +588,9 @@
<!--
**Template vmlpath2enhancedpath**
The template is resposible for converting the vml-path to enhanced-path,
because the svg:path
- cann't support command a now.(But heard that will be supported in OOo3.0)
- And the 2nd reason of using an enhanced-path is that enhanced-path have a
perfect maping to
- vmlpath.(You will find out that often,we even don't need to change the
parameters).
+ can't support command a now.(But heard that will be supported in OOo3.0)
+ And the 2nd reason of using an enhanced-path is that enhanced-path have a
perfect mapping to
+ vmlpath.(You will find out that often, we even don't need to change the
parameters).
-->
<xsl:template name="vmlpath2enhancedpath">
<xsl:param name="vml-path"/>
diff --git a/main/odk/examples/java/Text/TextReplace.java
b/main/odk/examples/java/Text/TextReplace.java
index 0548cdb454..2d36e2bed3 100644
--- a/main/odk/examples/java/Text/TextReplace.java
+++ b/main/odk/examples/java/Text/TextReplace.java
@@ -59,7 +59,7 @@ public class TextReplace {
UnoRuntime.queryInterface(
com.sun.star.util.XReplaceable.class, xTextDocument);
- // You need a descriptor to set properies for Replace
+ // You need a descriptor to set properties for Replace
xReplaceDescr = (com.sun.star.util.XReplaceDescriptor)
xReplaceable.createReplaceDescriptor();
diff --git a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/awt/_XWindow.java
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/awt/_XWindow.java
index 4cea31d63c..67ff95c20c 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/awt/_XWindow.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/awt/_XWindow.java
@@ -73,7 +73,7 @@ import util.ValueComparer;
* must lost it. </li>
* <li> <code>'XWindow.ControlShape'</code> <b>optional</b>
* (of type <code>XControlShape</code>):
-* Some shapes cann't change their size within fixed ControlShape
+* Some shapes can't change their size within fixed ControlShape
* and their size could be changed only if size of container
* ControlShape is changed. For such shapes this relation should
* be passed for proper <code>addWindowListener</code> test. </li>
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/beans/_XMultiPropertyStates.java
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/beans/_XMultiPropertyStates.java
index 8ecab20314..2e2afd67a4 100644
---
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/beans/_XMultiPropertyStates.java
+++
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/beans/_XMultiPropertyStates.java
@@ -191,7 +191,7 @@ public class _XMultiPropertyStates extends MultiMethodTest {
log.println("Ignore Runtime Exception: " + e.getMessage());
}
log.println("Checking that all properties are now in DEFAULT state" +
- " excepting may be those which 'cann't be default'");
+ " excepting may be those which 'can't be default'");
try {
states = oObj.getPropertyStates(names);
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/container/_XContainer.java
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/container/_XContainer.java
index c0b437e121..45c5c3be5f 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/container/_XContainer.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/container/_XContainer.java
@@ -54,7 +54,7 @@ import com.sun.star.uno.XNamingService;
* container.</li>
* <li> <code>'INSTANCE2'</code> : <b>(optional)</b>
* Object which can be inserted into container. The relation
-* must be specified when container cann't contain two
+* must be specified when container can't contain two
* identical objects. Replaces the first instance.</li>
* <li> <code>'XContainer.Container'</code> (of type
* <code>com.sun.star.container.XNameContainer</code>)
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/document/_XFilter.java
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/document/_XFilter.java
index baff8229dd..058321bde7 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/document/_XFilter.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/document/_XFilter.java
@@ -117,7 +117,7 @@ public class _XFilter extends MultiMethodTest {
result = oObj.filter(mDesc) ;
if (checker == null) {
- log.println("!!! Warning : cann't check filter as no
relation found");
+ log.println("!!! Warning : can't check filter as no
relation found");
} else {
result &= checker.checkFilter() ;
}
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/form/_XChangeBroadcaster.java
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/form/_XChangeBroadcaster.java
index 2ddac5c970..c0d7e08a7c 100644
---
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/form/_XChangeBroadcaster.java
+++
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/form/_XChangeBroadcaster.java
@@ -60,7 +60,7 @@ import com.sun.star.uno.UnoRuntime;
*
* <b>Prerequisites:</b> component must implement <code>XTextComponent</code>
* interface for changing component's text which must cause listener call.
-* If the component cann't support the interface, then the relation
+* If the component can't support the interface, then the relation
* <code>'XChangeBroadcaster.Changer'</code> must be passed. <p>
*
* Test is <b> NOT </b> multithread compilant. <p>
diff --git a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/frame/_XFrame.java
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/frame/_XFrame.java
index d753a47112..369ad8c779 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/frame/_XFrame.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/frame/_XFrame.java
@@ -415,7 +415,7 @@ public class _XFrame extends MultiMethodTest {
TestFrameActionListener listener = new TestFrameActionListener();
if (tEnv.getTestCase().getObjectName().equals("Desktop")) {
- log.println("Desktop cann't change context");
+ log.println("Desktop can't change context");
tRes.tested("contextChanged()", true) ;
return;
}
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/script/_XInvocationAdapterFactory.java
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/script/_XInvocationAdapterFactory.java
index 1c7a11c097..33a0b0bdec 100644
---
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/script/_XInvocationAdapterFactory.java
+++
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/script/_XInvocationAdapterFactory.java
@@ -85,7 +85,7 @@ public class _XInvocationAdapterFactory extends
MultiMethodTest {
} catch (com.sun.star.uno.Exception e) {
e.printStackTrace(log) ;
- throw new StatusException("Cann't create invocation for object",
e) ;
+ throw new StatusException("Can't create invocation for object", e)
;
}
XInterface xInStr = null ;
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/script/_XInvocationAdapterFactory2.java
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/script/_XInvocationAdapterFactory2.java
index 4879e5c31c..97b4a91ba0 100644
---
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/script/_XInvocationAdapterFactory2.java
+++
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/script/_XInvocationAdapterFactory2.java
@@ -85,7 +85,7 @@ public class _XInvocationAdapterFactory2 extends
MultiMethodTest {
} catch (com.sun.star.uno.Exception e) {
e.printStackTrace(log) ;
- throw new StatusException("Cann't create invocation for object",
e) ;
+ throw new StatusException("Can't create invocation for object", e)
;
}
XInterface xInStr = null ;
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/_XDataPilotDescriptor.java
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/_XDataPilotDescriptor.java
index b2724acaec..5fce55f35d 100644
---
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/_XDataPilotDescriptor.java
+++
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/_XDataPilotDescriptor.java
@@ -381,7 +381,7 @@ public class _XDataPilotDescriptor extends MultiMethodTest {
}
if (fieldsNames[rem] == null) {
- log.println("No fields were set to this orientation - cann't check
result") ;
+ log.println("No fields were set to this orientation - can't check
result") ;
return true ;
}
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/ui/dialogs/_XExecutableDialog.java
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/ui/dialogs/_XExecutableDialog.java
index 3dd5f85c93..3ca8f3e9ab 100644
---
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/ui/dialogs/_XExecutableDialog.java
+++
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/ui/dialogs/_XExecutableDialog.java
@@ -37,9 +37,9 @@ import com.sun.star.util.XCancellable;
* <li><code> execute()</code></li>
* </ul> <p>
*
- * This interface methods cann't be checked, thereby methods
+ * This interface methods can't be checked, thereby methods
* are just called. <code>execute</code> method is not called
- * at all as the dialog shown cann't be disposed. <p>
+ * at all as the dialog shown can't be disposed. <p>
*
* Test is <b> NOT </b> multithread compilant. <p>
* @see com.sun.star.ui.dialogs.XExecutableDialog
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/view/_XPrintable.java
b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/view/_XPrintable.java
index 98474317c0..8b40a11082 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/ifc/view/_XPrintable.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/ifc/view/_XPrintable.java
@@ -121,7 +121,7 @@ public class _XPrintable extends MultiMethodTest {
* exists. <p>
*
* @throws StatusException if service
- * <code>com.sun.star.ucb.SimpleFileAccess</code> cann't be
+ * <code>com.sun.star.ucb.SimpleFileAccess</code> can't be
* created.
*/
public void _print(){
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_dbaccess/ORowSet.java
b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_dbaccess/ORowSet.java
index cf04133fbd..4ad6e85046 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_dbaccess/ORowSet.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_dbaccess/ORowSet.java
@@ -209,7 +209,7 @@ public class ORowSet extends TestCase {
* Creating a Testenvironment for the interfaces to be tested.
* The database (DBF) file is copied from test document directory
* into SOffice temp dir with unique name for each environment
- * creation. If the file cann't be copied (is not released)
+ * creation. If the file can't be copied (is not released)
* then another unique name is used (file name suffix incremented
* by 1).<p>
*
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_forms/ODatabaseForm.java
b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_forms/ODatabaseForm.java
index 4ab0e17ece..d67c227b21 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_forms/ODatabaseForm.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_forms/ODatabaseForm.java
@@ -382,10 +382,10 @@ public class ODatabaseForm extends TestCase {
formLoader = FormTools.bindForm(xTextDoc, "MyForm", dbSourceName,
tableName);
} catch (com.sun.star.uno.Exception e) {
- log.println("Cann't bind the form to source '" + dbSourceName +
+ log.println("Can't bind the form to source '" + dbSourceName +
"', table '" + tableName + "' :");
e.printStackTrace(log);
- throw new StatusException("Cann't bind a form", e);
+ throw new StatusException("Can't bind a form", e);
}
@@ -514,7 +514,7 @@ public class ODatabaseForm extends TestCase {
try {
the_set.first();
} catch (SQLException e) {
- log.println("Cann't move cursor to the first row.");
+ log.println("Can't move cursor to the first row.");
e.printStackTrace();
throw new StatusException("Can't move cursor to the first row.",
e);
}
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_svx/SvxShapeCircle.java
b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_svx/SvxShapeCircle.java
index 505f5e0e77..3988db9c48 100644
--- a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_svx/SvxShapeCircle.java
+++ b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_svx/SvxShapeCircle.java
@@ -183,16 +183,16 @@ public class SvxShapeCircle extends TestCase {
props.setPropertyValue("CircleKind",
com.sun.star.drawing.CircleKind.FULL) ;
} catch (com.sun.star.lang.WrappedTargetException e) {
- log.println("Cann't set 'CircleKind' property : " + e);
+ log.println("Can't set 'CircleKind' property : " + e);
throw new StatusException("Can't create component", e) ;
} catch (com.sun.star.lang.IllegalArgumentException e) {
- log.println("Cann't set 'CircleKind' property : " + e);
+ log.println("Can't set 'CircleKind' property : " + e);
throw new StatusException("Can't create component", e) ;
} catch (com.sun.star.beans.PropertyVetoException e) {
- log.println("Cann't set 'CircleKind' property : " + e);
+ log.println("Can't set 'CircleKind' property : " + e);
throw new StatusException("Can't create component", e) ;
} catch (com.sun.star.beans.UnknownPropertyException e) {
- log.println("Cann't set 'CircleKind' property : " + e);
+ log.println("Can't set 'CircleKind' property : " + e);
throw new StatusException("Can't create component", e) ;
}
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sw/SwAccessibleFooterView.java
b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sw/SwAccessibleFooterView.java
index 652e4d440c..476b5b0d22 100644
---
a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sw/SwAccessibleFooterView.java
+++
b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sw/SwAccessibleFooterView.java
@@ -158,7 +158,7 @@ public class SwAccessibleFooterView extends TestCase {
new Integer(1000));
} catch (com.sun.star.uno.Exception e) {
e.printStackTrace();
- throw new StatusException("Cann't change footer.", e);
+ throw new StatusException("Can't change footer.", e);
}
}
});
diff --git
a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sw/SwAccessibleHeaderView.java
b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sw/SwAccessibleHeaderView.java
index b01e9a015b..895957f312 100644
---
a/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sw/SwAccessibleHeaderView.java
+++
b/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sw/SwAccessibleHeaderView.java
@@ -147,7 +147,7 @@ public class SwAccessibleHeaderView extends TestCase {
new Integer(1000));
} catch (com.sun.star.uno.Exception e) {
e.printStackTrace();
- throw new StatusException("Cann't change footer.", e);
+ throw new StatusException("Can't change footer.", e);
}
}
});
diff --git
a/main/qadevOOo/tests/basic/ifc/beans/XMultiPropertyStates/beans_XMultiPropertyStates.xba
b/main/qadevOOo/tests/basic/ifc/beans/XMultiPropertyStates/beans_XMultiPropertyStates.xba
index 2814396a20..77c7ddfa2b 100644
---
a/main/qadevOOo/tests/basic/ifc/beans/XMultiPropertyStates/beans_XMultiPropertyStates.xba
+++
b/main/qadevOOo/tests/basic/ifc/beans/XMultiPropertyStates/beans_XMultiPropertyStates.xba
@@ -153,7 +153,7 @@ On Error Goto ErrHndl
oObj.setAllPropertiesToDefault()
- Out.Log("Checking that all properties are now in DEFAULT state excepting
may be those which 'cann't be default'")
+ Out.Log("Checking that all properties are now in DEFAULT state excepting
may be those which 'can't be default'")
aStates = oObj.getPropertyStates(aPropNames)
for i = 0 to ubound(aStates)
if aStates(i) <> com.sun.star.beans.PropertyState.DEFAULT_VALUE
then
diff --git a/main/qadevOOo/tests/basic/ifc/frame/XFrame/frame_XFrame.xba
b/main/qadevOOo/tests/basic/ifc/frame/XFrame/frame_XFrame.xba
index 1262c3b5d4..9ca51b139c 100644
--- a/main/qadevOOo/tests/basic/ifc/frame/XFrame/frame_XFrame.xba
+++ b/main/qadevOOo/tests/basic/ifc/frame/XFrame/frame_XFrame.xba
@@ -282,7 +282,7 @@ On Error Goto ErrHndl
initListeners()
oObj.contextChanged()
if (instr(cObjectName,"Desktop") > -1) then
- Out.log("Desktop cann't change context")
+ Out.log("Desktop can't change context")
elseif(contextChanged1) then
bOK = true
elseif(listener1Called) then
diff --git
a/main/qadevOOo/tests/basic/ifc/sdb/ErrorMessageDialog/sdb_ErrorMessageDialog.xba
b/main/qadevOOo/tests/basic/ifc/sdb/ErrorMessageDialog/sdb_ErrorMessageDialog.xba
index 58f16b60e7..cdf682a021 100644
---
a/main/qadevOOo/tests/basic/ifc/sdb/ErrorMessageDialog/sdb_ErrorMessageDialog.xba
+++
b/main/qadevOOo/tests/basic/ifc/sdb/ErrorMessageDialog/sdb_ErrorMessageDialog.xba
@@ -52,7 +52,7 @@ On Error Goto ErrHndl
bOk = true
excep = oObj.SQLException
if isNull(excep) OR isEmpty(excep) then
- Out.Log("Property is null and cann't be changed")
+ Out.Log("Property is null and can't be changed")
else
oObj.SQLException = NULL_OBJECT
excep = oObj.SQLException
diff --git a/main/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java
b/main/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java
index 96f22ae859..2c32aa9a65 100644
--- a/main/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java
+++ b/main/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java
@@ -416,7 +416,7 @@ public class _XDataPilotDescriptor {
}
if (fieldsNames[rem] == null) {
- System.out.println("No fields were set to this orientation -
cann't check result") ;
+ System.out.println("No fields were set to this orientation - can't
check result") ;
return true ;
}
diff --git a/main/sw/source/filter/ww8/docxexport.cxx
b/main/sw/source/filter/ww8/docxexport.cxx
index 5caba89441..80fed88988 100644
--- a/main/sw/source/filter/ww8/docxexport.cxx
+++ b/main/sw/source/filter/ww8/docxexport.cxx
@@ -638,7 +638,7 @@ DocxExport::DocxExport( DocxExportFilter *pFilter, SwDoc
*pDocument, SwPaM *pCur
m_nFooters( 0 ),
m_pVMLExport( NULL )
{
- // Write the document properies
+ // Write the document properties
WriteProperties( );
// relations for the document
diff --git a/main/writerfilter/inc/doctok/WW8Document.hxx
b/main/writerfilter/inc/doctok/WW8Document.hxx
index edcd61adac..8d7c3bc722 100644
--- a/main/writerfilter/inc/doctok/WW8Document.hxx
+++ b/main/writerfilter/inc/doctok/WW8Document.hxx
@@ -77,7 +77,7 @@ public:
virtual Pointer_t getSubStream(const ::rtl::OUString & rSid) = 0;
/**
- Return a continious part of the stream.
+ Return a continuous part of the stream.
@param nOffset offset in the stream where the part starts
@param nCount length of the part (number of bytes)
@@ -110,7 +110,7 @@ class WRITERFILTER_DLLPUBLIC WW8Property
{
public:
/**
- Ponter to a property.
+ Pointer to a property.
*/
typedef boost::shared_ptr<WW8Property> Pointer_t;
@@ -237,7 +237,7 @@ enum PropertyType {
/** Auxiliary type for character positions defined in piece table */
PROP_DOC,
- /** properties are section properies */
+ /** properties are section properties */
PROP_SEC,
/** properties are paragraph properties */
@@ -252,7 +252,7 @@ enum PropertyType {
/** an endnote reference */
PROP_ENDNOTE,
- /** an annotaion reference */
+ /** an annotation reference */
PROP_ANNOTATION,
/** the start of a bookmark */
@@ -409,7 +409,7 @@ public:
- a footer
- a footnode
- @param nId identifier of the subdocumen
+ @param nId identifier of the subdocument
*/
virtual Pointer_t getSubDocument(SubDocumentId nId) = 0;