summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-06-17 23:22:20 +0000
committerCarl Worth <cworth@cworth.org>2005-06-17 23:22:20 +0000
commit3b8da5f213c3d0cf4357b29207639357241938bb (patch)
tree7f68677c4766ae60c9bb52985ae731baea378593
parent92222f8bcaca41304ddd6a49a7e9d731a6a15820 (diff)
Remove references to repeat and matrix fields that no longer exist.
-rw-r--r--ChangeLog5
-rw-r--r--doc/public/tmpl/cairo-pattern.sgml4
-rw-r--r--doc/public/tmpl/cairo.sgml23
-rw-r--r--src/cairo-xcb-surface.c3
4 files changed, 28 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 10460f2f4..075c3084a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-17 Carl Worth <cworth@cworth.org>
+
+ * src/cairo-xcb-surface.c (_get_image_surface): Remove references
+ to repeat and matrix fields that no longer exist.
+
2005-06-17 Owen Taylor <otaylor@redhat.com>
* src/cairo-xcb-surface.c (_get_image_surface)
diff --git a/doc/public/tmpl/cairo-pattern.sgml b/doc/public/tmpl/cairo-pattern.sgml
index 267a6b2e0..dadd7870c 100644
--- a/doc/public/tmpl/cairo-pattern.sgml
+++ b/doc/public/tmpl/cairo-pattern.sgml
@@ -123,9 +123,9 @@ cairo_pattern_t
</para>
@pattern:
-@Returns:
-<!-- # Unused Parameters # -->
@matrix:
+<!-- # Unused Parameters # -->
+@Returns:
<!-- ##### ENUM cairo_extend_t ##### -->
diff --git a/doc/public/tmpl/cairo.sgml b/doc/public/tmpl/cairo.sgml
index d24539320..f6a827c70 100644
--- a/doc/public/tmpl/cairo.sgml
+++ b/doc/public/tmpl/cairo.sgml
@@ -863,9 +863,9 @@ Drawing contexts.
</para>
@cr:
-@Returns:
-<!-- # Unused Parameters # -->
@matrix:
+<!-- # Unused Parameters # -->
+@Returns:
<!-- ##### FUNCTION cairo_get_target ##### -->
@@ -977,6 +977,25 @@ Drawing contexts.
@Returns:
+<!-- ##### USER_FUNCTION cairo_error_notify_func_t ##### -->
+<para>
+
+</para>
+
+@closure:
+@status:
+
+
+<!-- ##### FUNCTION cairo_set_error_notify ##### -->
+<para>
+
+</para>
+
+@cr:
+@error_notify:
+@closure:
+
+
<!-- ##### ENUM cairo_filter_t ##### -->
<para>
diff --git a/src/cairo-xcb-surface.c b/src/cairo-xcb-surface.c
index 5bfdff1ba..4e3204452 100644
--- a/src/cairo-xcb-surface.c
+++ b/src/cairo-xcb-surface.c
@@ -520,9 +520,6 @@ _get_image_surface (cairo_xcb_surface_t *surface,
/* Let the surface take ownership of the data */
_cairo_image_surface_assume_ownership_of_data (image);
- _cairo_image_surface_set_repeat (image, surface->base.repeat);
- _cairo_image_surface_set_matrix (image, &(surface->base.matrix));
-
*image_out = image;
return CAIRO_STATUS_SUCCESS;
}