diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-11 18:22:26 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-08-12 10:50:55 +0200 |
commit | 263e04b66d11eaf5d05c1e745df69e5f5010f7fb (patch) | |
tree | bb63baac425106b029bc900dd383bcae739754ce /tools | |
parent | 3a5edbe5692cbddc8e6e25c73a7cacf7f7142bfb (diff) |
Fix typos
Change-Id: Ic472270afa13d2c96a4c7ccc185d183c3b7ade2c
Reviewed-on: https://gerrit.libreoffice.org/77277
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/datetime/tdate.cxx | 2 | ||||
-rw-r--r-- | tools/source/fsys/wldcrd.cxx | 2 | ||||
-rw-r--r-- | tools/source/inet/inetmime.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/source/datetime/tdate.cxx b/tools/source/datetime/tdate.cxx index 51c6b53bd0a3..1fdebaac55bb 100644 --- a/tools/source/datetime/tdate.cxx +++ b/tools/source/datetime/tdate.cxx @@ -352,7 +352,7 @@ sal_uInt16 Date::GetWeekOfYear( DayOfWeek eStartDay, nWeek = aLastDatePrevYear.GetWeekOfYear( eStartDay, nMinimumNumberOfDaysInWeek ); } } - else // ( nMinimumNumberOfDaysInWeek == somehing_else, commentary examples for 4 ) + else // ( nMinimumNumberOfDaysInWeek == something_else, commentary examples for 4 ) { // x_monday - thursday if ( n1WDay < nMinimumNumberOfDaysInWeek ) diff --git a/tools/source/fsys/wldcrd.cxx b/tools/source/fsys/wldcrd.cxx index 1cdf20c30046..bf5155dee88b 100644 --- a/tools/source/fsys/wldcrd.cxx +++ b/tools/source/fsys/wldcrd.cxx @@ -97,7 +97,7 @@ bool WildCard::Matches( const OUString& rString ) const { while ( (nSepPos = aTmpWild.indexOf(cSepSymbol)) != -1 ) { - // Check all splitted wildcards + // Check all split wildcards if ( ImpMatch( aTmpWild.copy( 0, nSepPos ).getStr(), aString.getStr() ) ) return true; aTmpWild = aTmpWild.copy(nSepPos + 1); // remove separator diff --git a/tools/source/inet/inetmime.cxx b/tools/source/inet/inetmime.cxx index 97dcfc8a79ea..49038921b7a8 100644 --- a/tools/source/inet/inetmime.cxx +++ b/tools/source/inet/inetmime.cxx @@ -175,7 +175,7 @@ std::unique_ptr<sal_Char[]> convertFromUnicode(const sal_Unicode * pBegin, @param pBuffer Points to a buffer, must not be null. - @param nUTF32 An UTF-32 character, must be in the range 0..0x10FFFF. + @param nUTF32 A UTF-32 character, must be in the range 0..0x10FFFF. @return A pointer past the UTF-16 characters put into the buffer (i.e., pBuffer + 1 or pBuffer + 2). |