summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/module/pyuno_dlopenwrapper.c6
-rw-r--r--pyuno/source/module/pyuno_gc.cxx6
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
{