summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/qa/extras/inc/swmodeltestbase.hxx2
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlexport12.cxx2
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlexport4.cxx2
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlexport5.cxx2
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlexport7.cxx4
-rw-r--r--sw/qa/extras/unowriter/unowriter.cxx2
-rw-r--r--swext/mediawiki/src/registry/schema/org/openoffice/Office/Custom/WikiExtension.xcs2
7 files changed, 8 insertions, 8 deletions
diff --git a/sw/qa/extras/inc/swmodeltestbase.hxx b/sw/qa/extras/inc/swmodeltestbase.hxx
index a9542ae116fb..23cc46af3016 100644
--- a/sw/qa/extras/inc/swmodeltestbase.hxx
+++ b/sw/qa/extras/inc/swmodeltestbase.hxx
@@ -911,7 +911,7 @@ protected:
}
/**
- * Returns an xml stream of a an exported file.
+ * Returns an xml stream of an exported file.
* To be used when the exporter doesn't create zip archives, but single files
* (like Flat ODF Export)
*/
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx
index 1c973369902b..de66fe780b8b 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport12.cxx
@@ -636,7 +636,7 @@ DECLARE_OOXMLEXPORT_TEST(testObjectCrossReference, "object_cross_reference.odt")
OUString sValue;
xPropertySet->getPropertyValue("CurrentPresentation") >>= sValue;
CPPUNIT_ASSERT_EQUAL(OUString("Illustration 1: A picture"),
- sValue.trim()); // failes on MAC without trim
+ sValue.trim()); // fails on MAC without trim
xPropertySet->getPropertyValue("SourceName") >>= sValue;
CPPUNIT_ASSERT_EQUAL(OUString("Ref_Illustration0_full"), sValue);
break;
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx
index e81e8fca8b5d..140c90723a1a 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx
@@ -963,7 +963,7 @@ DECLARE_OOXMLEXPORT_TEST(test76108, "test76108.docx")
DECLARE_OOXMLEXPORT_TEST(testTCTagMisMatch, "TCTagMisMatch.docx")
{
- // TCTagMisMatch.docx : This document contains a empty table with borders.
+ // TCTagMisMatch.docx : This document contains an empty table with borders.
// there was a TC tag mismatch which resulted into a crash.
xmlDocPtr pXmlDoc = parseExport("word/document.xml");
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
index b70657edb1a0..7647c02142de 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
@@ -173,7 +173,7 @@ DECLARE_OOXMLEXPORT_TEST(testFDO77890 , "fdo77890.docx")
/*
Ensure that the page break is preserved i.e it should not be converted to a section break, in case
if the different first page is set for the pages in the document.
- For additional comments pls refer https://www.libreoffice.org/bugzilla/show_bug.cgi?id=77890#c2
+ For additional comments please refer to https://www.libreoffice.org/bugzilla/show_bug.cgi?id=77890#c2
*/
xmlDocPtr pXmlDoc = parseExport("word/document.xml");
if (!pXmlDoc)
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx
index e89134d6ab65..b673c06a3d2a 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx
@@ -124,7 +124,7 @@ DECLARE_OOXMLEXPORT_TEST(testFdo76249, "fdo76249.docx")
{
/*
* The Locked Canvas is imported correctly, but while exporting
- * the drawing element is exported inside a textbox. However a the drawing has to exported
+ * the drawing element is exported inside a textbox. However the drawing has to exported
* as a Locked Canvas inside a text-box for the RT file to work in MS Word, as drawing elements
* are not allowed inside the textboxes.
*/
@@ -947,7 +947,7 @@ DECLARE_OOXMLEXPORT_TEST(testPictureWrapPolygon, "picture-wrap-polygon.docx")
DECLARE_OOXMLEXPORT_TEST(testPictureColormodeGrayscale, "picture_colormode_grayscale.docx")
{
- // THe problem was that the grayscale was not exported
+ // The problem was that the grayscale was not exported
xmlDocPtr pXmlDoc = parseExport ("word/document.xml");
if (!pXmlDoc)
return;
diff --git a/sw/qa/extras/unowriter/unowriter.cxx b/sw/qa/extras/unowriter/unowriter.cxx
index 568ee8d19d75..ae3fa65be9df 100644
--- a/sw/qa/extras/unowriter/unowriter.cxx
+++ b/sw/qa/extras/unowriter/unowriter.cxx
@@ -289,7 +289,7 @@ CPPUNIT_TEST_FIXTURE(SwUnoWriter, testXURI)
CPPUNIT_ASSERT_EQUAL(OUString("somedata"), xURIcreate->getLocalName());
CPPUNIT_ASSERT_EQUAL(OUString("http://example.com/url#somedata"), xURIcreate->getStringValue());
- // create() without local name splitted with "/"
+ // create() without local name split with "/"
uno::Reference<rdf::XURI> xURIcreate2(rdf::URI::create(xContext, "http://example.com/url"),
uno::UNO_SET_THROW);
CPPUNIT_ASSERT_EQUAL(OUString("http://example.com/"), xURIcreate2->getNamespace());
diff --git a/swext/mediawiki/src/registry/schema/org/openoffice/Office/Custom/WikiExtension.xcs b/swext/mediawiki/src/registry/schema/org/openoffice/Office/Custom/WikiExtension.xcs
index c8d751c67a7b..c0147ae7b753 100644
--- a/swext/mediawiki/src/registry/schema/org/openoffice/Office/Custom/WikiExtension.xcs
+++ b/swext/mediawiki/src/registry/schema/org/openoffice/Office/Custom/WikiExtension.xcs
@@ -74,7 +74,7 @@
<info><desc>The list of the MediaWiki servers.</desc></info>
</set>
<set oor:name="RecentDocs" oor:node-type="Document">
- <info><desc>The recenly stored documents.</desc></info>
+ <info><desc>The recently stored documents.</desc></info>
</set>
<group oor:name="Settings">
<info><desc>The addon related settings.</desc></info>