diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-09-29 18:09:46 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-09-30 06:20:35 +0000 |
commit | d6e82846ce8bdd21db4a4aa783555950f0a8e442 (patch) | |
tree | 8e69af6cd7d70df53972a8610c8e84aedc150cbd /svl/source | |
parent | f0733ee8c9de62818867c656518cecf0986dda0f (diff) |
Fix typos
Change-Id: Icd2055ee1f941383d0338ea3515a9fbb6db1712a
Reviewed-on: https://gerrit.libreoffice.org/18979
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'svl/source')
-rw-r--r-- | svl/source/filerec/filerec.cxx | 4 | ||||
-rw-r--r-- | svl/source/items/itempool.cxx | 4 | ||||
-rw-r--r-- | svl/source/items/poolio.cxx | 2 | ||||
-rw-r--r-- | svl/source/numbers/zforscan.cxx | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/svl/source/filerec/filerec.cxx b/svl/source/filerec/filerec.cxx index c703193518da..ef538605af87 100644 --- a/svl/source/filerec/filerec.cxx +++ b/svl/source/filerec/filerec.cxx @@ -129,7 +129,7 @@ bool SfxMiniRecordReader::SetHeader_Impl( sal_uInt32 nHeader ) * This constructor interprets a 'pStream' from the current position * as a continuous sequence of records that should be parsable by * this group of classes. The first record that is an <SfxMiniRecord> - * (possibly an extened-Record> that has the PreTag 'nTag' will be opened + * (possibly an extended-Record> that has the PreTag 'nTag' will be opened * and represented by this instance. * * If the end of stream is reached or a record with tag @@ -459,7 +459,7 @@ sal_uInt32 SfxMultiVarRecordWriter::Close( bool bSeekToEndOfRec ) * @param nContentVer content version * * With this method new Content is added to a record and - * its tag and version are regorded. This method must be called + * its tag and version are recorded. This method must be called * to start each content, including the first record. */ void SfxMultiMixRecordWriter::NewContent(sal_uInt16 nContentTag, sal_uInt8 nContentVer) diff --git a/svl/source/items/itempool.cxx b/svl/source/items/itempool.cxx index 20b9e3a719fa..909c6508bfaf 100644 --- a/svl/source/items/itempool.cxx +++ b/svl/source/items/itempool.cxx @@ -880,10 +880,10 @@ const SfxPoolItem& SfxItemPool::GetDefaultItem( sal_uInt16 nWhich ) const { if ( pImp->mpSecondary ) return pImp->mpSecondary->GetDefaultItem( nWhich ); - assert(!"unknown which - dont ask me for defaults"); + assert(!"unknown which - don't ask me for defaults"); } - DBG_ASSERT( pImp->ppStaticDefaults, "no defaults known - dont ask me for defaults" ); + DBG_ASSERT( pImp->ppStaticDefaults, "no defaults known - don't ask me for defaults" ); sal_uInt16 nPos = GetIndex_Impl(nWhich); SfxPoolItem *pDefault = *(pImp->ppPoolDefaults + nPos); if ( pDefault ) diff --git a/svl/source/items/poolio.cxx b/svl/source/items/poolio.cxx index bed569a1bac1..619f9ca321ed 100644 --- a/svl/source/items/poolio.cxx +++ b/svl/source/items/poolio.cxx @@ -892,7 +892,7 @@ sal_uInt32 SfxItemPool::GetSurrogate(const SfxPoolItem *pItem) const { if ( pImp->mpSecondary ) return pImp->mpSecondary->GetSurrogate( pItem ); - SFX_ASSERT( false, pItem->Which(), "unknown Which-Id - dont ask me for surrogates" ); + SFX_ASSERT( false, pItem->Which(), "unknown Which-Id - don't ask me for surrogates" ); } // Pointer on static or pool-default attribute? diff --git a/svl/source/numbers/zforscan.cxx b/svl/source/numbers/zforscan.cxx index fb0ddef48812..2fd6aaa3337c 100644 --- a/svl/source/numbers/zforscan.cxx +++ b/svl/source/numbers/zforscan.cxx @@ -438,7 +438,7 @@ void ImpSvNumberformatScan::SetDependentKeywords() break; } - // boolean keyords + // boolean keywords InitSpecialKeyword( NF_KEY_TRUE ); InitSpecialKeyword( NF_KEY_FALSE ); |