diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-07-02 18:25:02 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <s.mehrbrodt@gmail.com> | 2015-07-04 10:21:01 +0000 |
commit | 0b7d51df3b4ce49f318dd9091df0bf7ba37cdd99 (patch) | |
tree | b5cf38ba79bb7259fe3aeedf660a2ce804b66369 /svl | |
parent | 462e986e0dbd533b3a15696555e08489963c9542 (diff) |
Fix typos
Change-Id: Ic6415423f46aaee7ba90239a617c318cf92ae222
Reviewed-on: https://gerrit.libreoffice.org/16711
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/filerec/filerec.cxx | 4 | ||||
-rw-r--r-- | svl/source/items/itemset.cxx | 2 | ||||
-rw-r--r-- | svl/source/items/poolio.cxx | 2 | ||||
-rw-r--r-- | svl/source/numbers/supservs.cxx | 2 | ||||
-rw-r--r-- | svl/source/numbers/zforfind.cxx | 2 | ||||
-rw-r--r-- | svl/source/numbers/zforfind.hxx | 2 | ||||
-rw-r--r-- | svl/source/passwordcontainer/passwordcontainer.cxx | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/svl/source/filerec/filerec.cxx b/svl/source/filerec/filerec.cxx index 3c02645d0e3e..c68a8c6cad6e 100644 --- a/svl/source/filerec/filerec.cxx +++ b/svl/source/filerec/filerec.cxx @@ -107,7 +107,7 @@ bool SfxMiniRecordReader::SetHeader_Impl( sal_uInt32 nHeader ) { bool bRet = true; - // determine reord end and PreTag from the header + // determine record end and PreTag from the header _nEofRec = _pStream->Tell() + SFX_REC_OFS(nHeader); _nPreTag = sal::static_int_cast< sal_uInt8 >(SFX_REC_PRE(nHeader)); @@ -520,7 +520,7 @@ bool SfxMultiRecordReader::ReadHeader_Impl() _pStream->ReadUInt16( _nContentCount ); _pStream->ReadUInt32( _nContentSize ); // Fix: each on its own, Var|Mix: table position - // do we still need to rade a table with Content offsets? + // do we still need to read a table with Content offsets? if ( _nRecordType != SFX_REC_TYPE_FIXSIZE ) { // read table from the stream diff --git a/svl/source/items/itemset.cxx b/svl/source/items/itemset.cxx index 301bafc2bfab..8a8dafd89666 100644 --- a/svl/source/items/itemset.cxx +++ b/svl/source/items/itemset.cxx @@ -1398,7 +1398,7 @@ SvStream &SfxItemSet::Store * This method loads an SfxItemSet from a stream. * If the SfxItemPool was loaded without RefCounts the loaded Item * references are counted, else we assume the they were accounted for - * when loadig the SfxItemPool. + * when loading the SfxItemPool. * * @see SfxItemSet::Store(Stream&,bool) const */ diff --git a/svl/source/items/poolio.cxx b/svl/source/items/poolio.cxx index 918330f6fa5a..1e0a20ea59ba 100644 --- a/svl/source/items/poolio.cxx +++ b/svl/source/items/poolio.cxx @@ -937,7 +937,7 @@ void SfxItemPool::SetStoringRange( sal_uInt16 nFrom, sal_uInt16 nTo ) * WhichIds. Moving WhichIds is not permitted. * This method should only be called in or right after the ctor. * - * The array must be static, because its not copied and resued in the + * The array must be static, because its not copied and reused in the * copy-ctor of the SfxItemPool * * Example usage: diff --git a/svl/source/numbers/supservs.cxx b/svl/source/numbers/supservs.cxx index 416ddef688ae..6fed0a08ef08 100644 --- a/svl/source/numbers/supservs.cxx +++ b/svl/source/numbers/supservs.cxx @@ -157,7 +157,7 @@ void SvNumberFormatsSupplierServiceObject::implEnsureFormatter() SvtSysLocale aSysLocale; css::lang::Locale aOfficeLocale = aSysLocale.GetLocaleData().getLanguageTag().getLocale(); - // initi with this locale + // initialize with this locale Sequence< Any > aFakedInitProps( 1 ); aFakedInitProps[0] <<= aOfficeLocale; diff --git a/svl/source/numbers/zforfind.cxx b/svl/source/numbers/zforfind.cxx index ac8de66f82c6..f0b08b5a903d 100644 --- a/svl/source/numbers/zforfind.cxx +++ b/svl/source/numbers/zforfind.cxx @@ -353,7 +353,7 @@ bool ImpSvNumberInputScan::SkipThousands( const sal_Unicode*& pStr, } // switch } // while - if (eState == SsGetValue) // break witth less than 3 digits + if (eState == SsGetValue) // break with less than 3 digits { if ( nCounter ) { diff --git a/svl/source/numbers/zforfind.hxx b/svl/source/numbers/zforfind.hxx index de99dd96c7de..a66e3328ea86 100644 --- a/svl/source/numbers/zforfind.hxx +++ b/svl/source/numbers/zforfind.hxx @@ -360,7 +360,7 @@ private: bool MatchedReturn(); //! Be sure that the string to be analyzed is already converted to upper - //! case and if it contained native humber digits that they are already + //! case and if it contained native number digits that they are already //! converted to ASCII. // Main analyzing function diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx b/svl/source/passwordcontainer/passwordcontainer.cxx index 76b8eff351d3..a6e8a83f69cd 100644 --- a/svl/source/passwordcontainer/passwordcontainer.cxx +++ b/svl/source/passwordcontainer/passwordcontainer.cxx @@ -242,7 +242,7 @@ PassMap StorageItem::getInfo() } } else - OSL_FAIL( "Wrong index sintax!\n" ); + OSL_FAIL( "Wrong index syntax!\n" ); } return aResult; |