diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-12-27 13:40:35 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-12-27 13:40:35 +0000 |
commit | 2530d2923c3959ac8efa73e37a4b44cdacec7070 (patch) | |
tree | 731ca30a3e787799f7f8fd8f350db46ec49a8e6e /idl | |
parent | 97599c406ec289c8a876bf9a834bf61a4e80b7ee (diff) |
presumably each entry needs a tab and semicolon
Change-Id: Iedb57186d56c6d1445bcfe2ad37d0569dba32b4e
Diffstat (limited to 'idl')
-rw-r--r-- | idl/source/objects/module.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/idl/source/objects/module.cxx b/idl/source/objects/module.cxx index 19c380b52f01..14acf1944fbb 100644 --- a/idl/source/objects/module.cxx +++ b/idl/source/objects/module.cxx @@ -153,20 +153,24 @@ void SvMetaModule::WriteAttributesSvIdl( SvIdlDataBase & rBase, SvMetaExtern::WriteAttributesSvIdl( rBase, rOutStm, nTab ); if( !aHelpFileName.getString().isEmpty() || !aSlotIdFile.getString().isEmpty() || !aTypeLibFile.getString().isEmpty() ) { - WriteTab( rOutStm, nTab ); if( !aHelpFileName.getString().isEmpty() ) { + WriteTab( rOutStm, nTab ); aHelpFileName.WriteSvIdl( SvHash_HelpFile(), rOutStm, nTab +1 ); + rOutStm << ';' << endl; } if( !aSlotIdFile.getString().isEmpty() ) { + WriteTab( rOutStm, nTab ); aSlotIdFile.WriteSvIdl( SvHash_SlotIdFile(), rOutStm, nTab +1 ); + rOutStm << ';' << endl; } if( !aTypeLibFile.getString().isEmpty() ) { + WriteTab( rOutStm, nTab ); aTypeLibFile.WriteSvIdl( SvHash_TypeLibFile(), rOutStm, nTab +1 ); + rOutStm << ';' << endl; } - rOutStm << ';' << endl; } } |