summaryrefslogtreecommitdiff
path: root/idl/source
diff options
context:
space:
mode:
Diffstat (limited to 'idl/source')
-rw-r--r--idl/source/objects/slot.cxx4
-rw-r--r--idl/source/objects/types.cxx2
-rw-r--r--idl/source/prj/database.cxx3
3 files changed, 5 insertions, 4 deletions
diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx
index ff32774ae4c1..2db9e130fd76 100644
--- a/idl/source/objects/slot.cxx
+++ b/idl/source/objects/slot.cxx
@@ -355,7 +355,7 @@ static OString MakeSlotName( SvStringHashEntry const * pEntry )
void SvMetaSlot::WriteSlotStubs( const OString& rShellName,
ByteStringList & rList,
- SvStream & rOutStm )
+ SvStream & rOutStm ) const
{
if ( !GetExport() && !GetHidden() )
return;
@@ -595,7 +595,7 @@ void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount,
rOutStm.WriteCharPtr( " )," ) << endl;
}
-sal_uInt16 SvMetaSlot::WriteSlotParamArray( SvIdlDataBase & rBase, SvStream & rOutStm )
+sal_uInt16 SvMetaSlot::WriteSlotParamArray( SvIdlDataBase & rBase, SvStream & rOutStm ) const
{
if ( !GetExport() && !GetHidden() )
return 0;
diff --git a/idl/source/objects/types.cxx b/idl/source/objects/types.cxx
index 3dbe7ecd9825..d79efe81fc43 100644
--- a/idl/source/objects/types.cxx
+++ b/idl/source/objects/types.cxx
@@ -96,7 +96,7 @@ bool SvMetaAttribute::ReadSvIdl( SvIdlDataBase & rBase,
return bOk;
}
-sal_uLong SvMetaAttribute::MakeSfx( OStringBuffer& rAttrArray )
+sal_uLong SvMetaAttribute::MakeSfx( OStringBuffer& rAttrArray ) const
{
SvMetaType * pType = GetType();
DBG_ASSERT( pType, "no type for attribute" );
diff --git a/idl/source/prj/database.cxx b/idl/source/prj/database.cxx
index 7dd941ae91cd..46c7b576f5bd 100644
--- a/idl/source/prj/database.cxx
+++ b/idl/source/prj/database.cxx
@@ -366,7 +366,8 @@ SvMetaClass * SvIdlDataBase::FindKnownClass( const OString& aName )
}
return nullptr;
}
-void SvIdlDataBase::Write(const OString& rText)
+
+void SvIdlDataBase::Write(const OString& rText) const
{
if( nVerbosity != 0 )
fprintf( stdout, "%s", rText.getStr() );