clang-format c*,d*,e* with under 5-percent lines of change

Files which could become clang-format conformant with
under 5-percent lines of change relative to the total
count of lines in the file are found by using bin/find-clang-format.py,
and fixed with /opt/lo/bin/clang-format -i <path-of-the-file>

There will be follow-up patches to fix all 'under-5-percent' files.

Change-Id: I06087a1385ca9da6a28d36ea4c0d2e40bdbf8f03
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88774
Tested-by: Jenkins
Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com>
This commit is contained in:
Muhammet Kara
2020-02-16 13:32:38 +03:00
parent 28b56c52f2
commit f99e765cb3
26 changed files with 51 additions and 92 deletions

View File

@@ -24,14 +24,16 @@ using namespace com::sun::star;
class Test : public UnoApiTest
{
public:
Test() : UnoApiTest("/cppcanvas/qa/extras/emfplus/data/")
Test()
: UnoApiTest("/cppcanvas/qa/extras/emfplus/data/")
{
}
virtual void setUp() override
{
UnoApiTest::setUp();
mxDesktop.set(frame::Desktop::create(comphelper::getComponentContext(getMultiServiceFactory())));
mxDesktop.set(
frame::Desktop::create(comphelper::getComponentContext(getMultiServiceFactory())));
SfxApplication::GetOrCreate();
};