summaryrefslogtreecommitdiff
path: root/src/cairo.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-06-06 15:41:31 -0700
committerCarl Worth <cworth@cworth.org>2006-06-06 15:41:31 -0700
commit5278de09973c3e41028dc80a8862db01fc70cf11 (patch)
treefa1b95ff513448d59ef955ba255ed7f681a486c2 /src/cairo.c
parent00592e075754594605fddfb2a702f3d2caa7c55c (diff)
Remove all remaining trailing whitespace.
This patch was produced with the following (GNU) sed script: sed -i -r -e 's/[ \t]+$//' run on all *.[ch] files within cairo. Note that the above script would have also created all the changes from the previous commits to remove trailing whitespace.
Diffstat (limited to 'src/cairo.c')
-rw-r--r--src/cairo.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/cairo.c b/src/cairo.c
index 98308c317..8a8e75ade 100644
--- a/src/cairo.c
+++ b/src/cairo.c
@@ -769,7 +769,7 @@ cairo_set_tolerance (cairo_t *cr, double tolerance)
void
cairo_set_antialias (cairo_t *cr, cairo_antialias_t antialias)
{
- if (cr->status)
+ if (cr->status)
return;
cr->status = _cairo_gstate_set_antialias (cr->gstate, antialias);
@@ -1460,7 +1460,7 @@ cairo_rel_move_to (cairo_t *cr, double dx, double dy)
{
cairo_fixed_t dx_fixed, dy_fixed;
- if (cr->status)
+ if (cr->status)
return;
_cairo_gstate_user_to_device_distance (cr->gstate, &dx, &dy);
@@ -2047,9 +2047,9 @@ cairo_reset_clip (cairo_t *cr)
* cairo.
**/
void
-cairo_select_font_face (cairo_t *cr,
- const char *family,
- cairo_font_slant_t slant,
+cairo_select_font_face (cairo_t *cr,
+ const char *family,
+ cairo_font_slant_t slant,
cairo_font_weight_t weight)
{
if (cr->status)
@@ -2097,7 +2097,7 @@ cairo_get_font_face (cairo_t *cr)
* Gets the font extents for the currently selected font.
**/
void
-cairo_font_extents (cairo_t *cr,
+cairo_font_extents (cairo_t *cr,
cairo_font_extents_t *extents)
{
if (cr->status)
@@ -2124,7 +2124,7 @@ cairo_set_font_face (cairo_t *cr,
if (cr->status)
return;
- cr->status = _cairo_gstate_set_font_face (cr->gstate, font_face);
+ cr->status = _cairo_gstate_set_font_face (cr->gstate, font_face);
if (cr->status)
_cairo_set_error (cr, cr->status);
}
@@ -2253,7 +2253,7 @@ cairo_set_scaled_font (cairo_t *cr,
if (cr->status)
goto BAIL;
- cr->status = _cairo_gstate_set_font_face (cr->gstate, scaled_font->font_face);
+ cr->status = _cairo_gstate_set_font_face (cr->gstate, scaled_font->font_face);
if (cr->status)
goto BAIL;
@@ -2354,7 +2354,7 @@ cairo_text_extents (cairo_t *cr,
**/
void
cairo_glyph_extents (cairo_t *cr,
- cairo_glyph_t *glyphs,
+ cairo_glyph_t *glyphs,
int num_glyphs,
cairo_text_extents_t *extents)
{