diff options
-rw-r--r-- | idl/inc/basobj.hxx | 2 | ||||
-rw-r--r-- | idl/source/objects/basobj.cxx | 2 | ||||
-rw-r--r-- | idl/source/objects/object.cxx | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/idl/inc/basobj.hxx b/idl/inc/basobj.hxx index af85f472c7d1..8b301264479a 100644 --- a/idl/inc/basobj.hxx +++ b/idl/inc/basobj.hxx @@ -97,7 +97,7 @@ public: SvMetaObject(); static void WriteTab( SvStream & rOutStm, sal_uInt16 nTab ); - static void Back2Delemitter( SvStream & ); + static void Back2Delimiter( SvStream & ); static void WriteStars( SvStream & ); void SetName( const OString& rName ); diff --git a/idl/source/objects/basobj.cxx b/idl/source/objects/basobj.cxx index 272b526de1ab..3a99061a059f 100644 --- a/idl/source/objects/basobj.cxx +++ b/idl/source/objects/basobj.cxx @@ -42,7 +42,7 @@ void SvMetaObject::WriteStars( SvStream & rOutStm ) rOutStm.WriteChar( '/' ) << endl; } -void SvMetaObject::Back2Delemitter( SvStream & rOutStm ) +void SvMetaObject::Back2Delimiter( SvStream & rOutStm ) { // write no empty brackets sal_uLong nPos = rOutStm.Tell(); diff --git a/idl/source/objects/object.cxx b/idl/source/objects/object.cxx index acc92f8bf8ab..1d02176a3642 100644 --- a/idl/source/objects/object.cxx +++ b/idl/source/objects/object.cxx @@ -356,7 +356,7 @@ void SvMetaClass::WriteSfx( SvIdlDataBase & rBase, SvStream & rOutStm ) // write all attributes sal_uInt16 nArgCount = WriteSlotParamArray( rBase, aSlotList, rOutStm ); if( nArgCount ) - Back2Delemitter( rOutStm ); + Back2Delimiter( rOutStm ); else { // at least one dummy @@ -381,7 +381,7 @@ void SvMetaClass::WriteSfx( SvIdlDataBase & rBase, SvStream & rOutStm ) // write all attributes WriteSlots( GetName(), 0, aSlotList, rBase, rOutStm ); if( nSlotCount ) - Back2Delemitter( rOutStm ); + Back2Delimiter( rOutStm ); else { // at least one dummy |