summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-12-11 09:31:47 +0100
committerJulien Nabet <serval2412@yahoo.fr>2019-12-11 14:10:21 +0100
commita8c458cc4a731facb3f5b9988e31c74f9292ec5e (patch)
tree02a2c466a9d81f38abfa58ee8d237747b3c6d18e
parent5ce761d8f8ff2041fab11a652bfa9655dbe19f5b (diff)
Fix typo
Change-Id: Idbcf73ea3034b62e283537e052c17a9fb3988a8b Reviewed-on: https://gerrit.libreoffice.org/84918 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--sal/textenc/unichars.cxx2
-rw-r--r--sc/qa/extras/scpdfexport.cxx2
-rw-r--r--sw/source/core/SwNumberTree/SwNumberTree.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/sal/textenc/unichars.cxx b/sal/textenc/unichars.cxx
index ed1f9be22fce..165ebbeb78de 100644
--- a/sal/textenc/unichars.cxx
+++ b/sal/textenc/unichars.cxx
@@ -83,7 +83,7 @@ bool ImplIsZeroWidth(sal_uInt32 nUtf32)
return nUtf32 == 0x200B // ZERO WIDTH SPACE
|| nUtf32 == 0x200C // ZERO WIDTH NON-JOINER
|| nUtf32 == 0x200D // ZERO WIDTH JOINER
- || nUtf32 == 0xFEFF; // ZEOR WIDTH NO-BREAK SPACE
+ || nUtf32 == 0xFEFF; // ZERO WIDTH NO-BREAK SPACE
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/qa/extras/scpdfexport.cxx b/sc/qa/extras/scpdfexport.cxx
index ef15a814e703..5629ee010b89 100644
--- a/sc/qa/extras/scpdfexport.cxx
+++ b/sc/qa/extras/scpdfexport.cxx
@@ -150,7 +150,7 @@ ScPDFExportTest::exportToPDF(const uno::Reference<frame::XModel>& xModel, const
pTempFile->EnableKillingFile();
OUString sFileURL = pTempFile->GetURL();
// Note: under Windows path path should be with "/" delimiters instead of "\\"
- // due to usage of INetURLObject() that converts "\\" to hexdecimal notation.
+ // due to usage of INetURLObject() that converts "\\" to hexadecimal notation.
::osl::FileBase::getFileURLFromSystemPath(sFileURL, sFileURL);
// get XSpreadsheet
diff --git a/sw/source/core/SwNumberTree/SwNumberTree.cxx b/sw/source/core/SwNumberTree/SwNumberTree.cxx
index 87a10e9702e9..2b2ab634b518 100644
--- a/sw/source/core/SwNumberTree/SwNumberTree.cxx
+++ b/sw/source/core/SwNumberTree/SwNumberTree.cxx
@@ -778,8 +778,8 @@ bool SwNumberTreeNode::IsFirst() const
}
// If node isn't the first child, it is the second child and the
- // first child is a phanton. In this case check, if the first phantom
- // child have only phanton children
+ // first child is a phantom. In this case check, if the first phantom
+ // child have only phantom children
if ( bResult &&
this != *(GetParent()->mChildren.begin()) &&
!(*(GetParent()->mChildren.begin()))->HasOnlyPhantoms() )