summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2022-02-09 12:36:49 +0100
committerJulien Nabet <serval2412@yahoo.fr>2022-02-09 19:17:29 +0100
commitff1544883f5daa96a27319a229a7ba94d34e1dda (patch)
tree0f9d2abff53347172487552f7c52ce0991caea2d
parent618084819babc839510860b74b36631749093c4c (diff)
Fix typos
Change-Id: I82405059d900b6605075bf5756f3f0fb99e9002e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129451 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--include/oox/shape/ShapeContextHandler.hxx2
-rw-r--r--odk/examples/DevelopersGuide/UCB/ResourceManager.java2
-rw-r--r--qadevOOo/runner/util/SysUtils.java2
-rw-r--r--sw/qa/core/text/text.cxx4
-rw-r--r--sw/qa/extras/ooxmlimport/ooxmlimport2.cxx2
-rw-r--r--vcl/win/dtrans/DOTransferable.cxx2
6 files changed, 7 insertions, 7 deletions
diff --git a/include/oox/shape/ShapeContextHandler.hxx b/include/oox/shape/ShapeContextHandler.hxx
index a245224730ed..d79ae4d17a1f 100644
--- a/include/oox/shape/ShapeContextHandler.hxx
+++ b/include/oox/shape/ShapeContextHandler.hxx
@@ -118,7 +118,7 @@ private:
std::stack<sal_uInt32> mnStartTokenStack;
css::awt::Point maPosition;
- bool m_bFullWPGSUpport; // Is this DrawingML shape supposed to be proccessed as WPG?
+ bool m_bFullWPGSUpport; // Is this DrawingML shape supposed to be processed as WPG?
drawingml::ShapePtr mpShape;
std::shared_ptr< vml::Drawing > mpDrawing;
diff --git a/odk/examples/DevelopersGuide/UCB/ResourceManager.java b/odk/examples/DevelopersGuide/UCB/ResourceManager.java
index 6eb10d87b992..6c6b8d6e2a20 100644
--- a/odk/examples/DevelopersGuide/UCB/ResourceManager.java
+++ b/odk/examples/DevelopersGuide/UCB/ResourceManager.java
@@ -151,7 +151,7 @@ public class ResourceManager {
}
/**
- * Get trasfering Operation.
+ * Get transferring Operation.
*
*@return String That contains the trasfering Operation
*/
diff --git a/qadevOOo/runner/util/SysUtils.java b/qadevOOo/runner/util/SysUtils.java
index e74716f6861c..2b02fd79b5d9 100644
--- a/qadevOOo/runner/util/SysUtils.java
+++ b/qadevOOo/runner/util/SysUtils.java
@@ -26,7 +26,7 @@ import com.sun.star.datatransfer.*;
public class SysUtils {
/**
- * Tries to obtain text data from cliboard if such one exists.
+ * Tries to obtain text data from clipboard if such one exists.
* The method iterates through all 'text/plain' supported data
* flavors and returns the first non-null String value.
*
diff --git a/sw/qa/core/text/text.cxx b/sw/qa/core/text/text.cxx
index 2ca0609e7eea..caeb70e4a89d 100644
--- a/sw/qa/core/text/text.cxx
+++ b/sw/qa/core/text/text.cxx
@@ -185,12 +185,12 @@ CPPUNIT_TEST_FIXTURE(SwCoreTextTest, testChineseAutoFirstLineIndent)
xmlDocUniquePtr pXmlDoc = parseLayoutDump();
- // Get the line width of the first line for the 1st paragrapsh.
+ // Get the line width of the first line for the 1st paragraph.
sal_Int32 nFirstLineWidth
= getXPath(pXmlDoc, "//body/txt[1]/SwParaPortion[1]/SwLineLayout[1]/SwLinePortion[1]",
"width")
.toInt32();
- // Get the line width of the first line for the 2nd paragrapsh.
+ // Get the line width of the first line for the 2nd paragraph.
sal_Int32 nSecondLineWidth
= getXPath(pXmlDoc, "//body/txt[2]/SwParaPortion[1]/SwLineLayout[1]/SwLinePortion[1]",
"width")
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx b/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx
index f3eb3d4aad34..4b32d6956fa8 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx
@@ -925,7 +925,7 @@ CPPUNIT_TEST_FIXTURE(Test, testTdf126426)
CPPUNIT_ASSERT_EQUAL(OUString("Some text "), xRun->getString());
}
{
- // Link and this content was completely missong before
+ // Link and this content was completely missing before
uno::Reference<text::XTextRange> xRun(xRunEnum->nextElement(), uno::UNO_QUERY_THROW);
CPPUNIT_ASSERT_EQUAL(OUString("Link"), xRun->getString());
auto aURL = getProperty<OUString>(xRun, "HyperLinkURL");
diff --git a/vcl/win/dtrans/DOTransferable.cxx b/vcl/win/dtrans/DOTransferable.cxx
index 363601d7a0d7..ea048f98f4f5 100644
--- a/vcl/win/dtrans/DOTransferable.cxx
+++ b/vcl/win/dtrans/DOTransferable.cxx
@@ -336,7 +336,7 @@ void CDOTransferable::initFlavorListFromFormatList(const std::vector<sal_uInt32>
for (sal_uInt32 cfFormat : rFormats)
{
// we use locales only to determine the
- // charset if there is text on the cliboard
+ // charset if there is text on the clipboard
// we don't offer this format
if (CF_LOCALE == cfFormat)
continue;