summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-11 19:52:42 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-08-12 16:08:03 +0200
commita4bf57b27b2c5e47e10a3d46c9a6535828dedefd (patch)
tree6de143be426afeb8c840580dac0e2387090679de
parentFix typos (diff)
downloadcore-a4bf57b27b2c5e47e10a3d46c9a6535828dedefd.tar.gz
core-a4bf57b27b2c5e47e10a3d46c9a6535828dedefd.zip
Fix typos
Change-Id: I72cc7132721706b3a5e06480efbae42065c36661 Reviewed-on: https://gerrit.libreoffice.org/77319 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--l10ntools/inc/xmlparse.hxx2
-rw-r--r--lingucomponent/source/thesaurus/libnth/nthesimp.cxx2
-rw-r--r--lotuswordpro/source/filter/lwplayout.cxx4
-rw-r--r--lotuswordpro/source/filter/lwptools.cxx4
4 files changed, 6 insertions, 6 deletions
diff --git a/l10ntools/inc/xmlparse.hxx b/l10ntools/inc/xmlparse.hxx
index 039b7f8ac387..2b68055b1446 100644
--- a/l10ntools/inc/xmlparse.hxx
+++ b/l10ntools/inc/xmlparse.hxx
@@ -190,7 +190,7 @@ private:
std::vector <OString> m_vOrder;
};
-/// An Utility class for XML
+/// A Utility class for XML
class XMLUtil
{
public:
diff --git a/lingucomponent/source/thesaurus/libnth/nthesimp.cxx b/lingucomponent/source/thesaurus/libnth/nthesimp.cxx
index da2d19a8fde6..396f39e9f05f 100644
--- a/lingucomponent/source/thesaurus/libnth/nthesimp.cxx
+++ b/lingucomponent/source/thesaurus/libnth/nthesimp.cxx
@@ -129,7 +129,7 @@ Sequence< Locale > SAL_CALL Thesaurus::getLocales()
// to prefer dictionaries with configuration entries we will only
// use those old style dictionaries that add a language that
- // is not yet supported by the list od new style dictionaries
+ // is not yet supported by the list of new style dictionaries
MergeNewStyleDicsAndOldStyleDics( aDics, aOldStyleDics );
sal_Int32 numthes = aDics.size();
diff --git a/lotuswordpro/source/filter/lwplayout.cxx b/lotuswordpro/source/filter/lwplayout.cxx
index bcc9482dc0ea..82607a17cd05 100644
--- a/lotuswordpro/source/filter/lwplayout.cxx
+++ b/lotuswordpro/source/filter/lwplayout.cxx
@@ -901,7 +901,7 @@ enumXFTextDir LwpMiddleLayout::GetTextDirection()
return eTextDir;
}
/**
- * @descr: Get back ground color.
+ * @descr: Get background color.
*/
LwpColor* LwpMiddleLayout::GetBackColor()
{
@@ -1976,7 +1976,7 @@ void LwpPlacableLayout::Read()
sal_uInt16 count = pStrm->QuickReaduInt16();
if(count)
{
- // temporily added by to avoid assertion
+ // temporarily added by to avoid assertion
while (count)
{
LwpPoint aPoint;
diff --git a/lotuswordpro/source/filter/lwptools.cxx b/lotuswordpro/source/filter/lwptools.cxx
index bd8ad0e067ba..8ce2e9676d63 100644
--- a/lotuswordpro/source/filter/lwptools.cxx
+++ b/lotuswordpro/source/filter/lwptools.cxx
@@ -262,7 +262,7 @@ std::unique_ptr<XFDateStyle> LwpTools::GetSystemDateStyle(bool bLongFormat)
if (pattern == nullptr)
return nullptr;
// 3 parse pattern string,per icu date/time format syntax, there are 20 letters reserved
- // as patter letter,each represent a element in date/time and its repeat numbers represent
+ // as patter letter,each represent an element in date/time and its repeat numbers represent
// different format: for example: M produces '1',MM produces '01', MMM produces 'Jan', MMMM produces 'Januaray'
// letter other than these letters is regard as text in the format, for example ','in 'Jan,2005'
// we parse pattern string letter by letter and get the time format.
@@ -650,7 +650,7 @@ std::unique_ptr<XFTimeStyle> LwpTools::GetSystemTimeStyle()
if (pattern == nullptr)
return nullptr;
// 3 parse pattern string,per icu date/time format syntax, there are 20 letters reserved
- // as patter letter,each represent a element in date/time and its repeat numbers represent
+ // as patter letter,each represent an element in date/time and its repeat numbers represent
// different format: for example: M produces '1',MM produces '01', MMM produces 'Jan', MMMM produces 'Januaray'
// letter other than these letters is regard as text in the format, for example ','in 'Jan,2005'
// we parse pattern string letter by letter and get the time format.