Fix typos

Change-Id: I72cc7132721706b3a5e06480efbae42065c36661
Reviewed-on: https://gerrit.libreoffice.org/77319
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
Andrea Gelmini
2019-08-11 19:52:42 +02:00
committed by Julien Nabet
parent ecd3a4874b
commit a4bf57b27b
4 changed files with 6 additions and 6 deletions

View File

@@ -190,7 +190,7 @@ private:
std::vector <OString> m_vOrder; std::vector <OString> m_vOrder;
}; };
/// An Utility class for XML /// A Utility class for XML
class XMLUtil class XMLUtil
{ {
public: public:

View File

@@ -129,7 +129,7 @@ Sequence< Locale > SAL_CALL Thesaurus::getLocales()
// to prefer dictionaries with configuration entries we will only // to prefer dictionaries with configuration entries we will only
// use those old style dictionaries that add a language that // 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 ); MergeNewStyleDicsAndOldStyleDics( aDics, aOldStyleDics );
sal_Int32 numthes = aDics.size(); sal_Int32 numthes = aDics.size();

View File

@@ -901,7 +901,7 @@ enumXFTextDir LwpMiddleLayout::GetTextDirection()
return eTextDir; return eTextDir;
} }
/** /**
* @descr: Get back ground color. * @descr: Get background color.
*/ */
LwpColor* LwpMiddleLayout::GetBackColor() LwpColor* LwpMiddleLayout::GetBackColor()
{ {
@@ -1976,7 +1976,7 @@ void LwpPlacableLayout::Read()
sal_uInt16 count = pStrm->QuickReaduInt16(); sal_uInt16 count = pStrm->QuickReaduInt16();
if(count) if(count)
{ {
// temporily added by to avoid assertion // temporarily added by to avoid assertion
while (count) while (count)
{ {
LwpPoint aPoint; LwpPoint aPoint;

View File

@@ -262,7 +262,7 @@ std::unique_ptr<XFDateStyle> LwpTools::GetSystemDateStyle(bool bLongFormat)
if (pattern == nullptr) if (pattern == nullptr)
return nullptr; return nullptr;
// 3 parse pattern string,per icu date/time format syntax, there are 20 letters reserved // 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' // 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' // 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. // 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) if (pattern == nullptr)
return nullptr; return nullptr;
// 3 parse pattern string,per icu date/time format syntax, there are 20 letters reserved // 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' // 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' // 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. // we parse pattern string letter by letter and get the time format.