summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2017-10-09 16:39:21 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2017-10-10 07:44:13 +0200
commit40056a599c07b6fd18226bc6eabb5be9fb2be3b2 (patch)
tree12395f46cab15fd54b307fb7b70c0a366783e6bf /basegfx
parentdaf7c3e7329f343afdcfc72b3c3b88d6b23f0690 (diff)
basegfx: consistently use "" and <> in include directives
Change-Id: I6e4e11532e634fbdb8c6bfd4ce3577fc2746aca8 Reviewed-on: https://gerrit.libreoffice.org/43300 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/workbench/bezierclip.cxx4
-rw-r--r--basegfx/source/workbench/convexhull.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/basegfx/source/workbench/bezierclip.cxx b/basegfx/source/workbench/bezierclip.cxx
index 86a439ea297b..bdc924113fab 100644
--- a/basegfx/source/workbench/bezierclip.cxx
+++ b/basegfx/source/workbench/bezierclip.cxx
@@ -24,8 +24,8 @@
#include <math.h>
-#include "bezierclip.hxx"
-#include "gauss.hxx"
+#include <bezierclip.hxx>
+#include <gauss.hxx>
// what to test
#define WITH_ASSERTIONS
diff --git a/basegfx/source/workbench/convexhull.cxx b/basegfx/source/workbench/convexhull.cxx
index dda785668866..ddcb04046508 100644
--- a/basegfx/source/workbench/convexhull.cxx
+++ b/basegfx/source/workbench/convexhull.cxx
@@ -20,7 +20,7 @@
#include <algorithm>
#include <vector>
-#include "bezierclip.hxx"
+#include <bezierclip.hxx>
/* Implements the theta function from Sedgewick: Algorithms in XXX, chapter 24 */
template <class PointType> double theta( const PointType& p1, const PointType& p2 )