summaryrefslogtreecommitdiff
path: root/idl/source
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 13:00:40 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-11-13 15:19:47 +0100
commit9c9a8229201bd134df923420c97db84688a7813c (patch)
treed9f29095ddeeefc83f0fbcb4c01601b4e0f4b2d3 /idl/source
parent7721e7a79733a5ac5e029869eeb88638ec00102e (diff)
tdf#123936 Formatting files in module idl with clang-format
Change-Id: I0a2681218773288c14b6faf98dd0bb8a7dbac56d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105679 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'idl/source')
-rw-r--r--idl/source/objects/module.cxx13
1 files changed, 5 insertions, 8 deletions
diff --git a/idl/source/objects/module.cxx b/idl/source/objects/module.cxx
index fe64287ae8e2..17c483a3243e 100644
--- a/idl/source/objects/module.cxx
+++ b/idl/source/objects/module.cxx
@@ -22,17 +22,14 @@
#include <database.hxx>
#include <osl/file.hxx>
+SvMetaModule::SvMetaModule() {}
-SvMetaModule::SvMetaModule()
+void SvMetaModule::WriteSfx(SvIdlDataBase& rBase, SvStream& rOutStm)
{
-}
-
-void SvMetaModule::WriteSfx( SvIdlDataBase & rBase, SvStream & rOutStm )
-{
- for( sal_uLong n = 0; n < aClassList.size(); n++ )
+ for (sal_uLong n = 0; n < aClassList.size(); n++)
{
- SvMetaClass * pClass = aClassList[n];
- pClass->WriteSfx( rBase, rOutStm );
+ SvMetaClass* pClass = aClassList[n];
+ pClass->WriteSfx(rBase, rOutStm);
}
}