diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2022-02-01 16:16:52 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2022-02-02 08:57:44 +0100 |
commit | 74bcd46bbf4cb88112b054e5b192a995f3ef354a (patch) | |
tree | 1a63fc9ca25fcf42a870fca7b642231d3e68dcd8 /lotuswordpro/source | |
parent | 13053299999c1a1931c322761b7e3390d7bdaa1f (diff) |
Fix typo
Change-Id: Ice5721d480567be4f8a4a79da6e01a6a389bf4bb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129318
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'lotuswordpro/source')
-rw-r--r-- | lotuswordpro/source/filter/lwptools.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwptools.cxx b/lotuswordpro/source/filter/lwptools.cxx index 674be2b89cd8..8a171fda7755 100644 --- a/lotuswordpro/source/filter/lwptools.cxx +++ b/lotuswordpro/source/filter/lwptools.cxx @@ -264,8 +264,8 @@ std::unique_ptr<XFDateStyle> LwpTools::GetSystemDateStyle(bool bLongFormat) return nullptr; // 3 parse pattern string,per icu date/time format syntax, there are 20 letters reserved // as pattern 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' + // different format: for example: M produces '1', MM produces '01', MMM produces 'Jan', MMMM produces 'January' + // 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. UChar cSymbol; UChar cTmp; |