summaryrefslogtreecommitdiff
path: root/src/cairo-path-private.h
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-12-18 17:00:17 -0800
committerCarl Worth <cworth@cworth.org>2006-12-19 13:10:14 -0800
commit473ae3aa9510b750f54cbf889180e3c4784da1b7 (patch)
tree724e64db9bac865695463875ea5aa9110e8933b8 /src/cairo-path-private.h
parentdef0e6d41d1a9108693db112f95d76bb6cfd0aaa (diff)
downloadcairo-473ae3aa9510b750f54cbf889180e3c4784da1b7.tar.gz
Rename remaining cairo_path_data to cairo_path in function names, etc.
Diffstat (limited to 'src/cairo-path-private.h')
-rw-r--r--src/cairo-path-private.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/cairo-path-private.h b/src/cairo-path-private.h
index a7ec92e1e..d855c192b 100644
--- a/src/cairo-path-private.h
+++ b/src/cairo-path-private.h
@@ -1,6 +1,7 @@
/* cairo - a vector graphics library with display and print output
*
* Copyright © 2005 Red Hat, Inc.
+ * Copyright © 2006 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it either under the terms of the GNU Lesser General Public
@@ -33,26 +34,26 @@
* Carl D. Worth <cworth@redhat.com>
*/
-#ifndef CAIRO_PATH_DATA_PRIVATE_H
-#define CAIRO_PATH_DATA_PRIVATE_H
+#ifndef CAIRO_PATH_PRIVATE_H
+#define CAIRO_PATH_PRIVATE_H
#include "cairoint.h"
extern const cairo_private cairo_path_t _cairo_path_nil;
cairo_private cairo_path_t *
-_cairo_path_data_create (cairo_path_fixed_t *path,
- cairo_gstate_t *gstate);
+_cairo_path_create (cairo_path_fixed_t *path,
+ cairo_gstate_t *gstate);
cairo_private cairo_path_t *
-_cairo_path_data_create_flat (cairo_path_fixed_t *path,
- cairo_gstate_t *gstate);
+_cairo_path_create_flat (cairo_path_fixed_t *path,
+ cairo_gstate_t *gstate);
cairo_private cairo_path_t *
-_cairo_path_data_create_in_error (cairo_status_t status);
+_cairo_path_create_in_error (cairo_status_t status);
cairo_private cairo_status_t
-_cairo_path_data_append_to_context (const cairo_path_t *path,
- cairo_t *cr);
+_cairo_path_append_to_context (const cairo_path_t *path,
+ cairo_t *cr);
#endif /* CAIRO_PATH_DATA_PRIVATE_H */