summaryrefslogtreecommitdiff
path: root/include/typelib
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 13:03:16 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-11-21 13:19:17 +0100
commit01baeab99890e5650b3dabc15f8d900490a5a133 (patch)
tree64a1b30b20a53262605312fff4d035876fc7c811 /include/typelib
parent0108cd51faf942b3fc3a292522d4b2f421f1cf45 (diff)
tdf#123936 Formatting files in module include with clang-format
Change-Id: I0507dd797cd5a35e0ae14f4b69ee4e172d08a71a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105681 Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Tested-by: Jenkins
Diffstat (limited to 'include/typelib')
-rw-r--r--include/typelib/typeclass.h3
-rw-r--r--include/typelib/uik.h16
2 files changed, 9 insertions, 10 deletions
diff --git a/include/typelib/typeclass.h b/include/typelib/typeclass.h
index 2da05b143645..f2091c13ae9c 100644
--- a/include/typelib/typeclass.h
+++ b/include/typelib/typeclass.h
@@ -23,8 +23,7 @@
/** This type class enum is binary compatible with the IDL enum com.sun.star.uno.TypeClass.
*/
-typedef enum _typelib_TypeClass
-{
+typedef enum _typelib_TypeClass {
/** type class of void */
typelib_TypeClass_VOID = 0,
/** type class of char */
diff --git a/include/typelib/uik.h b/include/typelib/uik.h
index 4c077ffeba65..e1cde78f6219 100644
--- a/include/typelib/uik.h
+++ b/include/typelib/uik.h
@@ -21,7 +21,7 @@
#include "sal/types.h"
-#if defined( _WIN32)
+#if defined(_WIN32)
#pragma pack(push, 8)
#endif
@@ -31,15 +31,15 @@
*/
typedef struct _typelib_Uik
{
- sal_uInt32 m_Data1;
- sal_uInt16 m_Data2;
- sal_uInt16 m_Data3;
- sal_uInt32 m_Data4;
- sal_uInt32 m_Data5;
+ sal_uInt32 m_Data1;
+ sal_uInt16 m_Data2;
+ sal_uInt16 m_Data3;
+ sal_uInt32 m_Data4;
+ sal_uInt32 m_Data5;
} typelib_Uik;
-#if defined( _WIN32)
-# pragma pack(pop)
+#if defined(_WIN32)
+#pragma pack(pop)
#endif
#endif