gdk: Undeprecate gdk_region_xor()

cairo_region_xor() does now exist, so there's no need to deprecate this
function.
This commit is contained in:
Benjamin Otte 2010-08-10 10:54:33 +02:00
parent a41107b616
commit e8915ae422
2 changed files with 1 additions and 5 deletions

View File

@ -1509,10 +1509,6 @@ gdk_region_subtract (GdkRegion *source1,
* Sets the area of @source1 to the exclusive-OR of the areas of @source1
* and @source2. The resulting area is the set of pixels contained in one
* or the other of the two sources but not in both.
*
* Deprecated: 2.22: There is no replacement, but the function can be
* reimplemented using gdk_region_intersect() and
* gdk_region_subract() easily.
**/
void
gdk_region_xor (GdkRegion *source1,

View File

@ -109,10 +109,10 @@ void gdk_region_union (GdkRegion *source1,
const GdkRegion *source2);
void gdk_region_subtract (GdkRegion *source1,
const GdkRegion *source2);
#ifndef GDK_DISABLE_DEPRECATED
void gdk_region_xor (GdkRegion *source1,
const GdkRegion *source2);
#ifndef GDK_DISABLE_DEPRECATED
void gdk_region_spans_intersect_foreach (GdkRegion *region,
const GdkSpan *spans,
int n_spans,