diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-10-23 22:34:49 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-10-23 22:45:59 +0200 |
commit | cb3b0cb54e1e505a0e54ef64fe46e8173c1379b2 (patch) | |
tree | 7115e785cae9724240c431c604954fcfbc936105 /pyuno | |
parent | 43479a097f089d478753ee1e463723db5eb7fdb8 (diff) |
loplugin:includeform: pyuno
Change-Id: If6090dc77275b4a8cdfeaedb437036801e981a9b
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno_dlopenwrapper.c | 6 | ||||
-rw-r--r-- | pyuno/source/module/pyuno_gc.cxx | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/pyuno/source/module/pyuno_dlopenwrapper.c b/pyuno/source/module/pyuno_dlopenwrapper.c index ac562809b11b..5654cb0f8f0a 100644 --- a/pyuno/source/module/pyuno_dlopenwrapper.c +++ b/pyuno/source/module/pyuno_dlopenwrapper.c @@ -19,9 +19,9 @@ /* make Python.h go first as a hack to work around _POSIX_C_SOURCE redefinition warnings: */ -#include "Python.h" +#include <Python.h> -#include "sal/config.h" +#include <sal/config.h> #include <stdlib.h> #include <string.h> @@ -31,7 +31,7 @@ #endif #include <dlfcn.h> -#include "rtl/string.h" +#include <rtl/string.h> /* A wrapper around libpyuno.so, making sure the latter is loaded RTLD_GLOBAL so that C++ exception handling works with old GCC versions (that determine diff --git a/pyuno/source/module/pyuno_gc.cxx b/pyuno/source/module/pyuno_gc.cxx index 4520303e3b2b..170e32ef7619 100644 --- a/pyuno/source/module/pyuno_gc.cxx +++ b/pyuno/source/module/pyuno_gc.cxx @@ -19,10 +19,10 @@ #include "pyuno_impl.hxx" -#include "sal/config.h" +#include <sal/config.h> -#include "rtl/ref.hxx" -#include "salhelper/thread.hxx" +#include <rtl/ref.hxx> +#include <salhelper/thread.hxx> namespace pyuno { |