summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-05-28 13:52:37 +0200
committerJulien Nabet <serval2412@yahoo.fr>2012-05-28 13:53:17 +0200
commit6b074ddd68133817b3aaff891fa85b43d264afe4 (patch)
tree4b1a012ddcbd7f04facb07ac5cf759697844fbfa /filter
parente206f8b7a2882d7eea163e29d76dfb336113e3f7 (diff)
Fix typos + fix prefer prefix++ for iter
Change-Id: Ic535667b3705fc707966e403edc32681a3c315e9
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/msdffimp.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 18c99bda4f4f..49ba21176c46 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -4601,7 +4601,7 @@ SdrObject* SvxMSDffManager::ImportShape( const DffRecordHeader& rHd, SvStream& r
aSet.Put( SvxWeightItem( ( GetPropertyValue( DFF_Prop_gtextFStrikethrough, 0 ) & 0x0020 ) != 0 ? WEIGHT_BOLD : WEIGHT_NORMAL, EE_CHAR_WEIGHT ) );
// SJ TODO: Vertical Writing is not correct, instead this should be
- // replaced through "CharacterRotation" by 90�, therefore a new Item has to be
+ // replaced through "CharacterRotation" by 90°, therefore a new Item has to be
// supported by svx core, api and xml file format
((SdrObjCustomShape*)pRet)->SetVerticalWriting( ( GetPropertyValue( DFF_Prop_gtextFStrikethrough, 0 ) & 0x2000 ) != 0 );
@@ -7275,9 +7275,9 @@ SdrOle2Obj* SvxMSDffManager::CreateSdrOLEFromStorage(
SvStream* pDataStrm,
ErrCode& rError,
sal_uInt32 nConvertFlags,
- sal_Int64 nReccomendedAspect )
+ sal_Int64 nRecommendedAspect )
{
- sal_Int64 nAspect = nReccomendedAspect;
+ sal_Int64 nAspect = nRecommendedAspect;
SdrOle2Obj* pRet = 0;
if( rSrcStorage.Is() && xDestStorage.is() && rStorageName.Len() )
{
@@ -7625,7 +7625,7 @@ void SvxMSDffManager::removeShapeId( SdrObject* pShape )
maShapeIdContainer.erase( aIter );
break;
}
- aIter++;
+ ++aIter;
}
}