summaryrefslogtreecommitdiff
path: root/lotuswordpro
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 /lotuswordpro
parentecd3a4874b2fc8630a31f104b7ac5fe07dcc3ee9 (diff)
Fix typos
Change-Id: I72cc7132721706b3a5e06480efbae42065c36661 Reviewed-on: https://gerrit.libreoffice.org/77319 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwplayout.cxx4
-rw-r--r--lotuswordpro/source/filter/lwptools.cxx4
2 files changed, 4 insertions, 4 deletions
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.