diff options
-rw-r--r-- | src/Makefile.am | 4 | ||||
-rw-r--r-- | src/cairo-path-private.h (renamed from src/cairo-path-data-private.h) | 0 | ||||
-rw-r--r-- | src/cairo-path.c (renamed from src/cairo-path-data.c) | 2 | ||||
-rw-r--r-- | src/cairo.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index a11f99dca..907658a37 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -191,9 +191,9 @@ libcairo_la_SOURCES = \ cairo-lzw.c \ cairo-matrix.c \ cairo-operator.c \ + cairo-path.c \ + cairo-path-private.h \ cairo-path-bounds.c \ - cairo-path-data.c \ - cairo-path-data-private.h \ cairo-path-fill.c \ cairo-path-fixed.c \ cairo-path-fixed-private.h \ diff --git a/src/cairo-path-data-private.h b/src/cairo-path-private.h index a7ec92e1e..a7ec92e1e 100644 --- a/src/cairo-path-data-private.h +++ b/src/cairo-path-private.h diff --git a/src/cairo-path-data.c b/src/cairo-path.c index 0666aa848..58a06c65d 100644 --- a/src/cairo-path-data.c +++ b/src/cairo-path.c @@ -33,7 +33,7 @@ * Carl D. Worth <cworth@redhat.com> */ -#include "cairo-path-data-private.h" +#include "cairo-path-private.h" #include "cairo-path-fixed-private.h" #include "cairo-gstate-private.h" diff --git a/src/cairo.c b/src/cairo.c index 7546d7a2e..7d88bbdbe 100644 --- a/src/cairo.c +++ b/src/cairo.c @@ -40,7 +40,7 @@ #include "cairo-private.h" #include "cairo-arc-private.h" -#include "cairo-path-data-private.h" +#include "cairo-path-private.h" #define CAIRO_TOLERANCE_MINIMUM 0.0002 /* We're limited by 16 bits of sub-pixel precision */ |