diff options
-rw-r--r-- | sal/textenc/unichars.cxx | 2 | ||||
-rw-r--r-- | sc/qa/extras/scpdfexport.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/SwNumberTree/SwNumberTree.cxx | 4 |
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() ) |