summaryrefslogtreecommitdiff
path: root/idl/source/objects/module.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/source/objects/module.cxx')
-rw-r--r--idl/source/objects/module.cxx38
1 files changed, 0 insertions, 38 deletions
diff --git a/idl/source/objects/module.cxx b/idl/source/objects/module.cxx
index 836d70f57035..9d0ee8ba1ce9 100644
--- a/idl/source/objects/module.cxx
+++ b/idl/source/objects/module.cxx
@@ -250,42 +250,4 @@ void SvMetaModule::WriteSfx( SvIdlDataBase & rBase, SvStream & rOutStm )
}
}
-void SvMetaModule::WriteAttributes( SvIdlDataBase & rBase,
- SvStream & rOutStm,
- sal_uInt16 nTab,
- WriteType nT, WriteAttribute nA )
-{
- SvMetaExtern::WriteAttributes( rBase, rOutStm, nTab, nT, nA );
- if( !aHelpFileName.getString().isEmpty() )
- {
- WriteTab( rOutStm, nTab );
- rOutStm.WriteCharPtr( "// class SvMetaModule" ) << endl;
- WriteTab( rOutStm, nTab );
- rOutStm.WriteCharPtr( "helpfile(\"" ).WriteCharPtr( aHelpFileName.getString().getStr() ).WriteCharPtr( "\");" ) << endl;
- }
-}
-
-void SvMetaModule::Write( SvIdlDataBase & rBase, SvStream & rOutStm,
- sal_uInt16 nTab,
- WriteType nT, WriteAttribute nA )
-{
- switch ( nT )
- {
- case WRITE_C_SOURCE:
- case WRITE_C_HEADER:
- {
- for( sal_uLong n = 0; n < aClassList.size(); n++ )
- {
- SvMetaClass * pClass = aClassList[n];
- if( !pClass->IsShell() )
- pClass->Write( rBase, rOutStm, nTab, nT, nA );
- }
- }
- break;
-
- default:
- break;
- }
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */