From 04b4354535693bd464b6b005dcb8149689372965 Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Thu, 24 Nov 2022 16:03:03 +0100 Subject: [PATCH] fix include style to always use "" for files from the project the use of #include <> is only for system headers and not headers from the project Signed-off-by: Matthieu Gallien --- test/testcfapishellextensionsipc.cpp | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/test/testcfapishellextensionsipc.cpp b/test/testcfapishellextensionsipc.cpp index cc7016ec2..7dedb0614 100644 --- a/test/testcfapishellextensionsipc.cpp +++ b/test/testcfapishellextensionsipc.cpp @@ -5,21 +5,24 @@ * */ -#include -#include -#include -#include -#include +#include "configfile.h" +#include "account.h" +#include "accountstate.h" +#include "accountmanager.h" +#include "common/vfs.h" +#include "common/shellextensionutils.h" #include "config.h" -#include -#include -#include -#include -#include +#include "folderman.h" +#include "libsync/vfs/cfapi/shellext/configvfscfapishellext.h" +#include "ocssharejob.h" +#include "shellextensionsserver.h" +#include "syncengine.h" #include "syncenginetestutils.h" #include "testhelper.h" -#include -#include +#include "vfs/cfapi/shellext/customstateprovideripc.h" +#include "vfs/cfapi/shellext/thumbnailprovideripc.h" + +#include #include #include #include -- 2.30.2