diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-05-28 20:24:43 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-05-28 20:24:43 +0000 |
commit | 9ed04de455526b399252416014673e7c11b9ca41 (patch) | |
tree | 423df50fd020d699bfe5753cbc5e727683de4074 /gdk/gdkrectangle.c | |
parent | d9c808b16334658729c238c556d41a1f508b867c (diff) | |
download | gtk+-9ed04de455526b399252416014673e7c11b9ca41.tar.gz |
Note in docs that @dest can be the same as @src1 or @src2. (#343233,
2006-05-28 Behdad Esfahbod <behdad@gnome.org>
* gdk/gdkrectangle.c (gdk_rectangle_union, gdk_rectangle_intersect):
Note in docs that @dest can be the same as @src1 or @src2. (#343233,
Christian Persch)
Diffstat (limited to 'gdk/gdkrectangle.c')
-rw-r--r-- | gdk/gdkrectangle.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk/gdkrectangle.c b/gdk/gdkrectangle.c index 427dbfd491..0e13b14bbd 100644 --- a/gdk/gdkrectangle.c +++ b/gdk/gdkrectangle.c @@ -37,6 +37,7 @@ * Calculates the union of two rectangles. * The union of rectangles @src1 and @src2 is the smallest rectangle which * includes both @src1 and @src2 within it. + * It is allowed for @dest to be the same as either @src1 or @src2. */ void gdk_rectangle_union (GdkRectangle *src1, @@ -64,6 +65,7 @@ gdk_rectangle_union (GdkRectangle *src1, * @dest: return location for the intersection of @src1 and @src2 * * Calculates the intersection of two rectangles. + * It is allowed for @dest to be the same as either @src1 or @src2. * * Returns: %TRUE if the rectangles intersect. */ |